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 OrderPriceServiceRetrieveFixedIncomeMarksRequest = { /** * The correspondent id. */ correspondentId: string; retrieveFixedIncomeMarksRequestCreate: components.RetrieveFixedIncomeMarksRequestCreate; }; export type OrderPriceServiceRetrieveFixedIncomeMarksResponse = { httpMeta: components.HTTPMetadata; /** * OK */ retrieveFixedIncomeMarksResponse?: components.RetrieveFixedIncomeMarksResponse | 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 OrderPriceServiceRetrieveFixedIncomeMarksRequest$inboundSchema: z.ZodType; /** @internal */ export type OrderPriceServiceRetrieveFixedIncomeMarksRequest$Outbound = { correspondent_id: string; RetrieveFixedIncomeMarksRequestCreate: components.RetrieveFixedIncomeMarksRequestCreate$Outbound; }; /** @internal */ export declare const OrderPriceServiceRetrieveFixedIncomeMarksRequest$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 OrderPriceServiceRetrieveFixedIncomeMarksRequest$ { /** @deprecated use `OrderPriceServiceRetrieveFixedIncomeMarksRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OrderPriceServiceRetrieveFixedIncomeMarksRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OrderPriceServiceRetrieveFixedIncomeMarksRequest$Outbound` instead. */ type Outbound = OrderPriceServiceRetrieveFixedIncomeMarksRequest$Outbound; } export declare function orderPriceServiceRetrieveFixedIncomeMarksRequestToJSON(orderPriceServiceRetrieveFixedIncomeMarksRequest: OrderPriceServiceRetrieveFixedIncomeMarksRequest): string; export declare function orderPriceServiceRetrieveFixedIncomeMarksRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const OrderPriceServiceRetrieveFixedIncomeMarksResponse$inboundSchema: z.ZodType; /** @internal */ export type OrderPriceServiceRetrieveFixedIncomeMarksResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; RetrieveFixedIncomeMarksResponse?: components.RetrieveFixedIncomeMarksResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const OrderPriceServiceRetrieveFixedIncomeMarksResponse$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 OrderPriceServiceRetrieveFixedIncomeMarksResponse$ { /** @deprecated use `OrderPriceServiceRetrieveFixedIncomeMarksResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `OrderPriceServiceRetrieveFixedIncomeMarksResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `OrderPriceServiceRetrieveFixedIncomeMarksResponse$Outbound` instead. */ type Outbound = OrderPriceServiceRetrieveFixedIncomeMarksResponse$Outbound; } export declare function orderPriceServiceRetrieveFixedIncomeMarksResponseToJSON(orderPriceServiceRetrieveFixedIncomeMarksResponse: OrderPriceServiceRetrieveFixedIncomeMarksResponse): string; export declare function orderPriceServiceRetrieveFixedIncomeMarksResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=orderpriceserviceretrievefixedincomemarks.d.ts.map