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 AlternativeInvestmentsListAlternativeInvestmentsRequest = { /** * The asset id. */ assetId: string; /** * The maximum number of orders to return. - Max value =100 - Values above 100 will be coerced to 100. - If the specified value is greater than the number of orders, the service will return fewer than the specified value. - If unspecified, at most 100 orders will be returned. */ pageSize?: number | undefined; /** * For pagination, provide the page token, received from a previous `ListAlternativeInvestments` call, to retrieve the subsequent page. All other parameters provided to `ListAlternativeInvestments` must match the request that provided the page token. */ pageToken?: string | undefined; /** * A CEL string to filter results. All fields from the response can be used as filters. * * @remarks * * See the [CEL Search](https://developer.apexclearing.com/apex-fintech-solutions/docs/cel-search) guide for syntax details and examples. */ filter?: string | undefined; }; export type AlternativeInvestmentsListAlternativeInvestmentsResponse = { httpMeta: components.HTTPMetadata; /** * OK */ listAlternativeInvestmentsResponse?: components.ListAlternativeInvestmentsResponse | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AlternativeInvestmentsListAlternativeInvestmentsRequest$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentsListAlternativeInvestmentsRequest$Outbound = { asset_id: string; page_size?: number | undefined; page_token?: string | undefined; filter?: string | undefined; }; /** @internal */ export declare const AlternativeInvestmentsListAlternativeInvestmentsRequest$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 AlternativeInvestmentsListAlternativeInvestmentsRequest$ { /** @deprecated use `AlternativeInvestmentsListAlternativeInvestmentsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentsListAlternativeInvestmentsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentsListAlternativeInvestmentsRequest$Outbound` instead. */ type Outbound = AlternativeInvestmentsListAlternativeInvestmentsRequest$Outbound; } export declare function alternativeInvestmentsListAlternativeInvestmentsRequestToJSON(alternativeInvestmentsListAlternativeInvestmentsRequest: AlternativeInvestmentsListAlternativeInvestmentsRequest): string; export declare function alternativeInvestmentsListAlternativeInvestmentsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AlternativeInvestmentsListAlternativeInvestmentsResponse$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentsListAlternativeInvestmentsResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; ListAlternativeInvestmentsResponse?: components.ListAlternativeInvestmentsResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AlternativeInvestmentsListAlternativeInvestmentsResponse$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 AlternativeInvestmentsListAlternativeInvestmentsResponse$ { /** @deprecated use `AlternativeInvestmentsListAlternativeInvestmentsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentsListAlternativeInvestmentsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentsListAlternativeInvestmentsResponse$Outbound` instead. */ type Outbound = AlternativeInvestmentsListAlternativeInvestmentsResponse$Outbound; } export declare function alternativeInvestmentsListAlternativeInvestmentsResponseToJSON(alternativeInvestmentsListAlternativeInvestmentsResponse: AlternativeInvestmentsListAlternativeInvestmentsResponse): string; export declare function alternativeInvestmentsListAlternativeInvestmentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alternativeinvestmentslistalternativeinvestments.d.ts.map