import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { Job } from "../components/job.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Available options: * * @remarks * - all_compensations: Include all effective dated compensations for each job instead of only the current compensation */ export declare const GetV1JobsJobIdQueryParamInclude: { readonly AllCompensations: "all_compensations"; }; /** * Available options: * * @remarks * - all_compensations: Include all effective dated compensations for each job instead of only the current compensation */ export type GetV1JobsJobIdQueryParamInclude = ClosedEnum; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export declare const GetV1JobsJobIdHeaderXGustoAPIVersion: { readonly TwoThousandAndTwentyFiveMinus06Minus15: "2025-06-15"; }; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ export type GetV1JobsJobIdHeaderXGustoAPIVersion = ClosedEnum; export type GetV1JobsJobIdRequest = { /** * The UUID of the job */ jobId: string; /** * Available options: * * @remarks * - all_compensations: Include all effective dated compensations for each job instead of only the current compensation */ include?: GetV1JobsJobIdQueryParamInclude | undefined; /** * Determines the date-based API version associated with your API call. If none is provided, your application's [minimum API version](https://docs.gusto.com/embedded-payroll/docs/api-versioning#minimum-api-version) is used. */ xGustoAPIVersion?: GetV1JobsJobIdHeaderXGustoAPIVersion | undefined; }; export type GetV1JobsJobIdResponse = { httpMeta: HTTPMetadata; /** * Successful */ job?: Job | undefined; }; /** @internal */ export declare const GetV1JobsJobIdQueryParamInclude$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetV1JobsJobIdHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1JobsJobIdRequest$Outbound = { job_id: string; include?: string | undefined; "X-Gusto-API-Version": string; }; /** @internal */ export declare const GetV1JobsJobIdRequest$outboundSchema: z.ZodType; export declare function getV1JobsJobIdRequestToJSON(getV1JobsJobIdRequest: GetV1JobsJobIdRequest): string; /** @internal */ export declare const GetV1JobsJobIdResponse$inboundSchema: z.ZodType; export declare function getV1JobsJobIdResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1jobsjobid.d.ts.map