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 ExerciseServiceGetOptionInstructionRequest = { /** * The account id. */ accountId: string; /** * The asset id. */ assetId: string; /** * The instruction id. */ instructionId: string; }; export type ExerciseServiceGetOptionInstructionResponse = { httpMeta: components.HTTPMetadata; /** * OK */ optionInstruction?: components.OptionInstruction | undefined; /** * Default error response */ status?: components.Status | undefined; }; /** @internal */ export declare const ExerciseServiceGetOptionInstructionRequest$inboundSchema: z.ZodType; /** @internal */ export type ExerciseServiceGetOptionInstructionRequest$Outbound = { account_id: string; asset_id: string; instruction_id: string; }; /** @internal */ export declare const ExerciseServiceGetOptionInstructionRequest$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 ExerciseServiceGetOptionInstructionRequest$ { /** @deprecated use `ExerciseServiceGetOptionInstructionRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceGetOptionInstructionRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceGetOptionInstructionRequest$Outbound` instead. */ type Outbound = ExerciseServiceGetOptionInstructionRequest$Outbound; } export declare function exerciseServiceGetOptionInstructionRequestToJSON(exerciseServiceGetOptionInstructionRequest: ExerciseServiceGetOptionInstructionRequest): string; export declare function exerciseServiceGetOptionInstructionRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ExerciseServiceGetOptionInstructionResponse$inboundSchema: z.ZodType; /** @internal */ export type ExerciseServiceGetOptionInstructionResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; OptionInstruction?: components.OptionInstruction$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const ExerciseServiceGetOptionInstructionResponse$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 ExerciseServiceGetOptionInstructionResponse$ { /** @deprecated use `ExerciseServiceGetOptionInstructionResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceGetOptionInstructionResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceGetOptionInstructionResponse$Outbound` instead. */ type Outbound = ExerciseServiceGetOptionInstructionResponse$Outbound; } export declare function exerciseServiceGetOptionInstructionResponseToJSON(exerciseServiceGetOptionInstructionResponse: ExerciseServiceGetOptionInstructionResponse): string; export declare function exerciseServiceGetOptionInstructionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=exerciseservicegetoptioninstruction.d.ts.map