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 { Rehire } from "../components/rehire.js"; import { RehireUpdateRequestBody, RehireUpdateRequestBody$Outbound } from "../components/rehireupdaterequestbody.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 PutV1EmployeesEmployeeIdRehireHeaderXGustoAPIVersion: { 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 PutV1EmployeesEmployeeIdRehireHeaderXGustoAPIVersion = ClosedEnum; export type PutV1EmployeesEmployeeIdRehireRequest = { /** * 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?: PutV1EmployeesEmployeeIdRehireHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; rehireUpdateRequestBody: RehireUpdateRequestBody; }; export type PutV1EmployeesEmployeeIdRehireResponse = { httpMeta: HTTPMetadata; /** * Success */ rehire?: Rehire | undefined; }; /** @internal */ export declare const PutV1EmployeesEmployeeIdRehireHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PutV1EmployeesEmployeeIdRehireRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; "Rehire-Update-Request-Body": RehireUpdateRequestBody$Outbound; }; /** @internal */ export declare const PutV1EmployeesEmployeeIdRehireRequest$outboundSchema: z.ZodType; export declare function putV1EmployeesEmployeeIdRehireRequestToJSON(putV1EmployeesEmployeeIdRehireRequest: PutV1EmployeesEmployeeIdRehireRequest): string; /** @internal */ export declare const PutV1EmployeesEmployeeIdRehireResponse$inboundSchema: z.ZodType; export declare function putV1EmployeesEmployeeIdRehireResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putv1employeesemployeeidrehire.d.ts.map