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 OrderPriceServiceRetrieveQuoteRequest = { /** * The account id. */ accountId: string; retrieveQuoteRequestCreate: components.RetrieveQuoteRequestCreate; }; export type OrderPriceServiceRetrieveQuoteResponse = { httpMeta: components.HTTPMetadata; /** * OK */ retrieveQuoteResponse?: components.RetrieveQuoteResponse | undefined; /** * INVALID_ARGUMENT: There was an issue with one or more fields in the request. The message field will contain details about which field failed validation and why. */ status?: components.Status | undefined; }; /** @internal */ export declare const OrderPriceServiceRetrieveQuoteRequest$inboundSchema: z.ZodType; /** @internal */ export type OrderPriceServiceRetrieveQuoteRequest$Outbound = { account_id: string; RetrieveQuoteRequestCreate: components.RetrieveQuoteRequestCreate$Outbound; }; /** @internal */ export declare const OrderPriceServiceRetrieveQuoteRequest$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 OrderPriceServiceRetrieveQuoteRequest$ { /** @deprecated use `OrderPriceServiceRetrieveQuoteRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OrderPriceServiceRetrieveQuoteRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OrderPriceServiceRetrieveQuoteRequest$Outbound` instead. */ type Outbound = OrderPriceServiceRetrieveQuoteRequest$Outbound; } export declare function orderPriceServiceRetrieveQuoteRequestToJSON(orderPriceServiceRetrieveQuoteRequest: OrderPriceServiceRetrieveQuoteRequest): string; export declare function orderPriceServiceRetrieveQuoteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const OrderPriceServiceRetrieveQuoteResponse$inboundSchema: z.ZodType; /** @internal */ export type OrderPriceServiceRetrieveQuoteResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; RetrieveQuoteResponse?: components.RetrieveQuoteResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const OrderPriceServiceRetrieveQuoteResponse$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 OrderPriceServiceRetrieveQuoteResponse$ { /** @deprecated use `OrderPriceServiceRetrieveQuoteResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OrderPriceServiceRetrieveQuoteResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OrderPriceServiceRetrieveQuoteResponse$Outbound` instead. */ type Outbound = OrderPriceServiceRetrieveQuoteResponse$Outbound; } export declare function orderPriceServiceRetrieveQuoteResponseToJSON(orderPriceServiceRetrieveQuoteResponse: OrderPriceServiceRetrieveQuoteResponse): string; export declare function orderPriceServiceRetrieveQuoteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderpriceserviceretrievequote.d.ts.map