import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to cancel an existing option instruction */ export type CancelOptionInstructionRequestCreate = { /** * The name of the instruction to be cancelled. */ name: string; }; /** @internal */ export declare const CancelOptionInstructionRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type CancelOptionInstructionRequestCreate$Outbound = { name: string; }; /** @internal */ export declare const CancelOptionInstructionRequestCreate$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 CancelOptionInstructionRequestCreate$ { /** @deprecated use `CancelOptionInstructionRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CancelOptionInstructionRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CancelOptionInstructionRequestCreate$Outbound` instead. */ type Outbound = CancelOptionInstructionRequestCreate$Outbound; } export declare function cancelOptionInstructionRequestCreateToJSON(cancelOptionInstructionRequestCreate: CancelOptionInstructionRequestCreate): string; export declare function cancelOptionInstructionRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=canceloptioninstructionrequestcreate.d.ts.map