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 MarginsRealTimeGetAssetBuyingPowerRequest = { /** * The account id. */ accountId: string; /** * The asset id. */ assetId: string; }; export type MarginsRealTimeGetAssetBuyingPowerResponse = { httpMeta: components.HTTPMetadata; /** * OK */ assetBuyingPower?: components.AssetBuyingPower | undefined; /** * INVALID_ARGUMENT: The request was not well formed. Check the error message for more details. */ status?: components.Status | undefined; }; /** @internal */ export declare const MarginsRealTimeGetAssetBuyingPowerRequest$inboundSchema: z.ZodType; /** @internal */ export type MarginsRealTimeGetAssetBuyingPowerRequest$Outbound = { account_id: string; asset_id: string; }; /** @internal */ export declare const MarginsRealTimeGetAssetBuyingPowerRequest$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 MarginsRealTimeGetAssetBuyingPowerRequest$ { /** @deprecated use `MarginsRealTimeGetAssetBuyingPowerRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MarginsRealTimeGetAssetBuyingPowerRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MarginsRealTimeGetAssetBuyingPowerRequest$Outbound` instead. */ type Outbound = MarginsRealTimeGetAssetBuyingPowerRequest$Outbound; } export declare function marginsRealTimeGetAssetBuyingPowerRequestToJSON(marginsRealTimeGetAssetBuyingPowerRequest: MarginsRealTimeGetAssetBuyingPowerRequest): string; export declare function marginsRealTimeGetAssetBuyingPowerRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MarginsRealTimeGetAssetBuyingPowerResponse$inboundSchema: z.ZodType; /** @internal */ export type MarginsRealTimeGetAssetBuyingPowerResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; AssetBuyingPower?: components.AssetBuyingPower$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const MarginsRealTimeGetAssetBuyingPowerResponse$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 MarginsRealTimeGetAssetBuyingPowerResponse$ { /** @deprecated use `MarginsRealTimeGetAssetBuyingPowerResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MarginsRealTimeGetAssetBuyingPowerResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MarginsRealTimeGetAssetBuyingPowerResponse$Outbound` instead. */ type Outbound = MarginsRealTimeGetAssetBuyingPowerResponse$Outbound; } export declare function marginsRealTimeGetAssetBuyingPowerResponseToJSON(marginsRealTimeGetAssetBuyingPowerResponse: MarginsRealTimeGetAssetBuyingPowerResponse): string; export declare function marginsRealTimeGetAssetBuyingPowerResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=marginsrealtimegetassetbuyingpower.d.ts.map