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 { I9Authorization } from "../components/i9authorization.js"; import { I9AuthorizationRequestBody, I9AuthorizationRequestBody$Outbound } from "../components/i9authorizationrequestbody.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 PutV1EmployeesEmployeeIdI9AuthorizationHeaderXGustoAPIVersion: { 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 PutV1EmployeesEmployeeIdI9AuthorizationHeaderXGustoAPIVersion = ClosedEnum; export type PutV1EmployeesEmployeeIdI9AuthorizationRequest = { /** * 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?: PutV1EmployeesEmployeeIdI9AuthorizationHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; i9AuthorizationRequestBody: I9AuthorizationRequestBody; }; export type PutV1EmployeesEmployeeIdI9AuthorizationResponse = { httpMeta: HTTPMetadata; /** * Success */ i9Authorization?: I9Authorization | undefined; }; /** @internal */ export declare const PutV1EmployeesEmployeeIdI9AuthorizationHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PutV1EmployeesEmployeeIdI9AuthorizationRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; "I9-Authorization-Request-Body": I9AuthorizationRequestBody$Outbound; }; /** @internal */ export declare const PutV1EmployeesEmployeeIdI9AuthorizationRequest$outboundSchema: z.ZodType; export declare function putV1EmployeesEmployeeIdI9AuthorizationRequestToJSON(putV1EmployeesEmployeeIdI9AuthorizationRequest: PutV1EmployeesEmployeeIdI9AuthorizationRequest): string; /** @internal */ export declare const PutV1EmployeesEmployeeIdI9AuthorizationResponse$inboundSchema: z.ZodType; export declare function putV1EmployeesEmployeeIdI9AuthorizationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putv1employeesemployeeidi9authorization.d.ts.map