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 MarginsRealTimeGetBuyingPowerRequest = { /** * The account id. */ accountId: string; }; export type MarginsRealTimeGetBuyingPowerResponse = { httpMeta: components.HTTPMetadata; /** * OK */ buyingPower?: components.BuyingPower | undefined; /** * INVALID_ARGUMENT: The request was not well formed. Check the error message for more details. */ status?: components.Status | undefined; }; /** @internal */ export declare const MarginsRealTimeGetBuyingPowerRequest$inboundSchema: z.ZodType; /** @internal */ export type MarginsRealTimeGetBuyingPowerRequest$Outbound = { account_id: string; }; /** @internal */ export declare const MarginsRealTimeGetBuyingPowerRequest$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 MarginsRealTimeGetBuyingPowerRequest$ { /** @deprecated use `MarginsRealTimeGetBuyingPowerRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MarginsRealTimeGetBuyingPowerRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MarginsRealTimeGetBuyingPowerRequest$Outbound` instead. */ type Outbound = MarginsRealTimeGetBuyingPowerRequest$Outbound; } export declare function marginsRealTimeGetBuyingPowerRequestToJSON(marginsRealTimeGetBuyingPowerRequest: MarginsRealTimeGetBuyingPowerRequest): string; export declare function marginsRealTimeGetBuyingPowerRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const MarginsRealTimeGetBuyingPowerResponse$inboundSchema: z.ZodType; /** @internal */ export type MarginsRealTimeGetBuyingPowerResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; BuyingPower?: components.BuyingPower$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const MarginsRealTimeGetBuyingPowerResponse$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 MarginsRealTimeGetBuyingPowerResponse$ { /** @deprecated use `MarginsRealTimeGetBuyingPowerResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `MarginsRealTimeGetBuyingPowerResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `MarginsRealTimeGetBuyingPowerResponse$Outbound` instead. */ type Outbound = MarginsRealTimeGetBuyingPowerResponse$Outbound; } export declare function marginsRealTimeGetBuyingPowerResponseToJSON(marginsRealTimeGetBuyingPowerResponse: MarginsRealTimeGetBuyingPowerResponse): string; export declare function marginsRealTimeGetBuyingPowerResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=marginsrealtimegetbuyingpower.d.ts.map