import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BookingFeeCreate, BookingFeeCreate$Outbound } from "./bookingfeecreate.js"; /** * A request for completing a trade. */ export type CompleteTradeRequestCreate = { /** * Client calculated fees to use while completing an existing trade. */ fees?: Array | undefined; /** * The name of the trade to complete. */ name: string; }; /** @internal */ export declare const CompleteTradeRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type CompleteTradeRequestCreate$Outbound = { fees?: Array | undefined; name: string; }; /** @internal */ export declare const CompleteTradeRequestCreate$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 CompleteTradeRequestCreate$ { /** @deprecated use `CompleteTradeRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CompleteTradeRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CompleteTradeRequestCreate$Outbound` instead. */ type Outbound = CompleteTradeRequestCreate$Outbound; } export declare function completeTradeRequestCreateToJSON(completeTradeRequestCreate: CompleteTradeRequestCreate): string; export declare function completeTradeRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=completetraderequestcreate.d.ts.map