import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { RetrieveFixedIncomeMarksRequestSecurityIdentifiersCreate, RetrieveFixedIncomeMarksRequestSecurityIdentifiersCreate$Outbound } from "./retrievefixedincomemarksrequestsecurityidentifierscreate.js"; /** * Request object for retrieving fixed income marks */ export type RetrieveFixedIncomeMarksRequestCreate = { /** * The parent resource where this price will be sourced under. Format: correspondents/{correspondent_id} */ parent: string; /** * Identifiers specifying for which assets mark data should be returned. A maximum of 100 identifiers are allowed. At least one identifier must be provided in the request. */ securityIdentifiers: Array; }; /** @internal */ export declare const RetrieveFixedIncomeMarksRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type RetrieveFixedIncomeMarksRequestCreate$Outbound = { parent: string; security_identifiers: Array; }; /** @internal */ export declare const RetrieveFixedIncomeMarksRequestCreate$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 RetrieveFixedIncomeMarksRequestCreate$ { /** @deprecated use `RetrieveFixedIncomeMarksRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RetrieveFixedIncomeMarksRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RetrieveFixedIncomeMarksRequestCreate$Outbound` instead. */ type Outbound = RetrieveFixedIncomeMarksRequestCreate$Outbound; } export declare function retrieveFixedIncomeMarksRequestCreateToJSON(retrieveFixedIncomeMarksRequestCreate: RetrieveFixedIncomeMarksRequestCreate): string; export declare function retrieveFixedIncomeMarksRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=retrievefixedincomemarksrequestcreate.d.ts.map