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 { I9AuthorizationEmployerSignRequestBody, I9AuthorizationEmployerSignRequestBody$Outbound } from "../components/i9authorizationemployersignrequestbody.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 PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignHeaderXGustoAPIVersion: { 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 PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignHeaderXGustoAPIVersion = ClosedEnum; export type PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignRequest = { /** * 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?: PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; /** * Optional header to supply the IP address. This can be used to supply the IP address for signature endpoints instead of the signed_by_ip_address parameter. */ xGustoClientIp?: string | undefined; i9AuthorizationEmployerSignRequestBody: I9AuthorizationEmployerSignRequestBody; }; export type PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignResponse = { httpMeta: HTTPMetadata; /** * Success */ i9Authorization?: I9Authorization | undefined; }; /** @internal */ export declare const PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; "x-gusto-client-ip"?: string | undefined; "I9-Authorization-Employer-Sign-Request-Body": I9AuthorizationEmployerSignRequestBody$Outbound; }; /** @internal */ export declare const PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignRequest$outboundSchema: z.ZodType; export declare function putV1EmployeesEmployeeIdI9AuthorizationEmployerSignRequestToJSON(putV1EmployeesEmployeeIdI9AuthorizationEmployerSignRequest: PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignRequest): string; /** @internal */ export declare const PutV1EmployeesEmployeeIdI9AuthorizationEmployerSignResponse$inboundSchema: z.ZodType; export declare function putV1EmployeesEmployeeIdI9AuthorizationEmployerSignResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=putv1employeesemployeeidi9authorizationemployersign.d.ts.map