import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { Compensation } from "../components/compensation.js"; import { HTTPMetadata } from "../components/httpmetadata.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * 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 GetV1JobsJobIdCompensationsHeaderXGustoAPIVersion: { 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 GetV1JobsJobIdCompensationsHeaderXGustoAPIVersion = ClosedEnum; /** * Available options: * * @remarks * - all_compensations: Include all effective dated compensations for each job instead of only the current compensation */ export declare const GetV1JobsJobIdCompensationsQueryParamInclude: { 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 GetV1JobsJobIdCompensationsQueryParamInclude = ClosedEnum; export type GetV1JobsJobIdCompensationsRequest = { /** * 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?: GetV1JobsJobIdCompensationsHeaderXGustoAPIVersion | undefined; /** * The UUID of the job */ jobId: string; /** * The page that is requested. When unspecified, will load all objects unless endpoint forces pagination. */ page?: number | undefined; /** * Number of objects per page. For majority of endpoints will default to 25 */ per?: number | undefined; /** * Available options: * * @remarks * - all_compensations: Include all effective dated compensations for each job instead of only the current compensation */ include?: GetV1JobsJobIdCompensationsQueryParamInclude | undefined; }; export type GetV1JobsJobIdCompensationsResponse = { httpMeta: HTTPMetadata; /** * Successful */ compensations?: Array | undefined; }; /** @internal */ export declare const GetV1JobsJobIdCompensationsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetV1JobsJobIdCompensationsQueryParamInclude$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1JobsJobIdCompensationsRequest$Outbound = { "X-Gusto-API-Version": string; job_id: string; page?: number | undefined; per?: number | undefined; include?: string | undefined; }; /** @internal */ export declare const GetV1JobsJobIdCompensationsRequest$outboundSchema: z.ZodType; export declare function getV1JobsJobIdCompensationsRequestToJSON(getV1JobsJobIdCompensationsRequest: GetV1JobsJobIdCompensationsRequest): string; /** @internal */ export declare const GetV1JobsJobIdCompensationsResponse$inboundSchema: z.ZodType; export declare function getV1JobsJobIdCompensationsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1jobsjobidcompensations.d.ts.map