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 AlternativeInvestmentsGetAlternativeInvestmentRequest = { /** * The asset id. */ assetId: string; }; export type AlternativeInvestmentsGetAlternativeInvestmentResponse = { httpMeta: components.HTTPMetadata; /** * OK */ alternativeInvestment?: components.AlternativeInvestment | undefined; /** * INVALID_ARGUMENT: The request has an invalid argument. */ status?: components.Status | undefined; }; /** @internal */ export declare const AlternativeInvestmentsGetAlternativeInvestmentRequest$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentsGetAlternativeInvestmentRequest$Outbound = { asset_id: string; }; /** @internal */ export declare const AlternativeInvestmentsGetAlternativeInvestmentRequest$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 AlternativeInvestmentsGetAlternativeInvestmentRequest$ { /** @deprecated use `AlternativeInvestmentsGetAlternativeInvestmentRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentsGetAlternativeInvestmentRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentsGetAlternativeInvestmentRequest$Outbound` instead. */ type Outbound = AlternativeInvestmentsGetAlternativeInvestmentRequest$Outbound; } export declare function alternativeInvestmentsGetAlternativeInvestmentRequestToJSON(alternativeInvestmentsGetAlternativeInvestmentRequest: AlternativeInvestmentsGetAlternativeInvestmentRequest): string; export declare function alternativeInvestmentsGetAlternativeInvestmentRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AlternativeInvestmentsGetAlternativeInvestmentResponse$inboundSchema: z.ZodType; /** @internal */ export type AlternativeInvestmentsGetAlternativeInvestmentResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AlternativeInvestment?: components.AlternativeInvestment$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const AlternativeInvestmentsGetAlternativeInvestmentResponse$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 AlternativeInvestmentsGetAlternativeInvestmentResponse$ { /** @deprecated use `AlternativeInvestmentsGetAlternativeInvestmentResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentsGetAlternativeInvestmentResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AlternativeInvestmentsGetAlternativeInvestmentResponse$Outbound` instead. */ type Outbound = AlternativeInvestmentsGetAlternativeInvestmentResponse$Outbound; } export declare function alternativeInvestmentsGetAlternativeInvestmentResponseToJSON(alternativeInvestmentsGetAlternativeInvestmentResponse: AlternativeInvestmentsGetAlternativeInvestmentResponse): string; export declare function alternativeInvestmentsGetAlternativeInvestmentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=alternativeinvestmentsgetalternativeinvestment.d.ts.map