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 AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest = { /** * 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 `ListInvestmentDocuments` call, to retrieve the subsequent page. All other parameters provided to `ListInvestmentDocuments` 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 AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse = { httpMeta: components.HTTPMetadata; /** * OK */ listAlternativeInvestmentDocumentsResponse?: components.ListAlternativeInvestmentDocumentsResponse | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest$Outbound = { asset_id: string; page_size?: number | undefined; page_token?: string | undefined; filter?: string | undefined; }; /** @internal */ export declare const AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest$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 AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest$ { /** @deprecated use `AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest$Outbound` instead. */ type Outbound = AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest$Outbound; } export declare function alternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequestToJSON(alternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest: AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequest): string; export declare function alternativeInvestmentDocumentsListAlternativeInvestmentDocumentsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; ListAlternativeInvestmentDocumentsResponse?: components.ListAlternativeInvestmentDocumentsResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse$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 AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse$ { /** @deprecated use `AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse$Outbound` instead. */ type Outbound = AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse$Outbound; } export declare function alternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponseToJSON(alternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse: AlternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponse): string; export declare function alternativeInvestmentDocumentsListAlternativeInvestmentDocumentsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alternativeinvestmentdocumentslistalternativeinvestmentdocuments.d.ts.map