import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { OptionInstruction, OptionInstruction$Outbound } from "./optioninstruction.js"; /** * Response containing a paginated list of option instructions */ export type ListOptionInstructionsResponse = { /** * The list of instruction resources matching the request. */ instructions?: Array | undefined; /** * A token to retrieve the next page of results, or empty if there are no more results in the list. */ nextPageToken?: string | undefined; }; /** @internal */ export declare const ListOptionInstructionsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListOptionInstructionsResponse$Outbound = { instructions?: Array | undefined; next_page_token?: string | undefined; }; /** @internal */ export declare const ListOptionInstructionsResponse$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 ListOptionInstructionsResponse$ { /** @deprecated use `ListOptionInstructionsResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListOptionInstructionsResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListOptionInstructionsResponse$Outbound` instead. */ type Outbound = ListOptionInstructionsResponse$Outbound; } export declare function listOptionInstructionsResponseToJSON(listOptionInstructionsResponse: ListOptionInstructionsResponse): string; export declare function listOptionInstructionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listoptioninstructionsresponse.d.ts.map