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 ExerciseServiceCreateOptionInstructionRequest = { /** * The account id. */ accountId: string; /** * The asset id. */ assetId: string; optionInstructionCreate: components.OptionInstructionCreate; }; export type ExerciseServiceCreateOptionInstructionResponse = { httpMeta: components.HTTPMetadata; /** * OK */ optionInstruction?: components.OptionInstruction | undefined; /** * Default error response */ status?: components.Status | undefined; }; /** @internal */ export declare const ExerciseServiceCreateOptionInstructionRequest$inboundSchema: z.ZodType; /** @internal */ export type ExerciseServiceCreateOptionInstructionRequest$Outbound = { account_id: string; asset_id: string; OptionInstructionCreate: components.OptionInstructionCreate$Outbound; }; /** @internal */ export declare const ExerciseServiceCreateOptionInstructionRequest$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 ExerciseServiceCreateOptionInstructionRequest$ { /** @deprecated use `ExerciseServiceCreateOptionInstructionRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceCreateOptionInstructionRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceCreateOptionInstructionRequest$Outbound` instead. */ type Outbound = ExerciseServiceCreateOptionInstructionRequest$Outbound; } export declare function exerciseServiceCreateOptionInstructionRequestToJSON(exerciseServiceCreateOptionInstructionRequest: ExerciseServiceCreateOptionInstructionRequest): string; export declare function exerciseServiceCreateOptionInstructionRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ExerciseServiceCreateOptionInstructionResponse$inboundSchema: z.ZodType; /** @internal */ export type ExerciseServiceCreateOptionInstructionResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; OptionInstruction?: components.OptionInstruction$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const ExerciseServiceCreateOptionInstructionResponse$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 ExerciseServiceCreateOptionInstructionResponse$ { /** @deprecated use `ExerciseServiceCreateOptionInstructionResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceCreateOptionInstructionResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceCreateOptionInstructionResponse$Outbound` instead. */ type Outbound = ExerciseServiceCreateOptionInstructionResponse$Outbound; } export declare function exerciseServiceCreateOptionInstructionResponseToJSON(exerciseServiceCreateOptionInstructionResponse: ExerciseServiceCreateOptionInstructionResponse): string; export declare function exerciseServiceCreateOptionInstructionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=exerciseservicecreateoptioninstruction.d.ts.map