import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { EmployeeSection603HighEarnerStatus } from "../components/employeesection603highearnerstatus.js"; import { EmployeeSection603HighEarnerStatusUpdateRequest, EmployeeSection603HighEarnerStatusUpdateRequest$Outbound } from "../components/employeesection603highearnerstatusupdaterequest.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 PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearHeaderXGustoAPIVersion: { 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 PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearHeaderXGustoAPIVersion = ClosedEnum; export type PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearRequest = { /** * The UUID of the employee */ employeeUuid: string; /** * The effective year for the Section 603 status */ effectiveYear: number; /** * 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?: PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearHeaderXGustoAPIVersion | undefined; employeeSection603HighEarnerStatusUpdateRequest: EmployeeSection603HighEarnerStatusUpdateRequest; }; export type PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearResponse = { httpMeta: HTTPMetadata; /** * successful */ employeeSection603HighEarnerStatus?: EmployeeSection603HighEarnerStatus | undefined; }; /** @internal */ export declare const PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearRequest$Outbound = { employee_uuid: string; effective_year: number; "X-Gusto-API-Version": string; "Employee-Section603-High-Earner-Status-Update-Request": EmployeeSection603HighEarnerStatusUpdateRequest$Outbound; }; /** @internal */ export declare const PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearRequest$outboundSchema: z.ZodType; export declare function patchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearRequestToJSON(patchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearRequest: PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearRequest): string; /** @internal */ export declare const PatchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearResponse$inboundSchema: z.ZodType; export declare function patchV1EmployeesEmployeeUuidSection603HighEarnerStatusesEffectiveYearResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=patchv1employeesemployeeuuidsection603highearnerstatuseseffectiveyear.d.ts.map