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 ExerciseServiceListOptionInstructionsRequest = { /** * The account id. */ accountId: string; /** * The asset id. */ assetId: string; /** * Maximum number of instructions to return (1000). If unspecified, the server will set a default value of 1000. */ pageSize?: number | undefined; /** * A token to retrieve the next page of results. Set this to the value of `next_page_token` from a previous `ListInstructions` call, or leave it empty to retrieve the first page. */ pageToken?: string | undefined; /** * Optional filter to limit results to specific criteria. Example: "type == 'DO_NOT_EXERCISE' && account_id == '12345'" */ filter?: string | undefined; }; export type ExerciseServiceListOptionInstructionsResponse = { httpMeta: components.HTTPMetadata; /** * OK */ listOptionInstructionsResponse?: components.ListOptionInstructionsResponse | undefined; /** * Default error response */ status?: components.Status | undefined; }; /** @internal */ export declare const ExerciseServiceListOptionInstructionsRequest$inboundSchema: z.ZodType; /** @internal */ export type ExerciseServiceListOptionInstructionsRequest$Outbound = { account_id: string; asset_id: string; page_size?: number | undefined; page_token?: string | undefined; filter?: string | undefined; }; /** @internal */ export declare const ExerciseServiceListOptionInstructionsRequest$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 ExerciseServiceListOptionInstructionsRequest$ { /** @deprecated use `ExerciseServiceListOptionInstructionsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceListOptionInstructionsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceListOptionInstructionsRequest$Outbound` instead. */ type Outbound = ExerciseServiceListOptionInstructionsRequest$Outbound; } export declare function exerciseServiceListOptionInstructionsRequestToJSON(exerciseServiceListOptionInstructionsRequest: ExerciseServiceListOptionInstructionsRequest): string; export declare function exerciseServiceListOptionInstructionsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ExerciseServiceListOptionInstructionsResponse$inboundSchema: z.ZodType; /** @internal */ export type ExerciseServiceListOptionInstructionsResponse$Outbound = { HttpMeta: components.HTTPMetadata$Outbound; ListOptionInstructionsResponse?: components.ListOptionInstructionsResponse$Outbound | undefined; Status?: components.Status$Outbound | undefined; }; /** @internal */ export declare const ExerciseServiceListOptionInstructionsResponse$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 ExerciseServiceListOptionInstructionsResponse$ { /** @deprecated use `ExerciseServiceListOptionInstructionsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceListOptionInstructionsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExerciseServiceListOptionInstructionsResponse$Outbound` instead. */ type Outbound = ExerciseServiceListOptionInstructionsResponse$Outbound; } export declare function exerciseServiceListOptionInstructionsResponseToJSON(exerciseServiceListOptionInstructionsResponse: ExerciseServiceListOptionInstructionsResponse): string; export declare function exerciseServiceListOptionInstructionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=exerciseservicelistoptioninstructions.d.ts.map