import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ListJobsRequest = { state?: components.ComputeResourceState | undefined; cursor?: string | undefined; limit?: number | undefined; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; export type ListJobsResponse = components.ComputeJobList | components.ComputeErrorEnvelope; /** @internal */ export declare const ListJobsRequest$inboundSchema: z.ZodType; /** @internal */ export type ListJobsRequest$Outbound = { state?: string | undefined; cursor?: string | undefined; limit: number; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const ListJobsRequest$outboundSchema: z.ZodType; export declare function listJobsRequestToJSON(listJobsRequest: ListJobsRequest): string; export declare function listJobsRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const ListJobsResponse$inboundSchema: z.ZodType; /** @internal */ export type ListJobsResponse$Outbound = components.ComputeJobList$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const ListJobsResponse$outboundSchema: z.ZodType; export declare function listJobsResponseToJSON(listJobsResponse: ListJobsResponse): string; export declare function listJobsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listjobs.d.ts.map