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 { I9AuthorizationDocumentOption } from "../components/i9authorizationdocumentoption.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 GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsHeaderXGustoAPIVersion: { 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 GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsHeaderXGustoAPIVersion = ClosedEnum; export type GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsRequest = { /** * 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?: GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; }; export type GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsResponse = { httpMeta: HTTPMetadata; /** * Success */ i9AuthorizationDocumentOptions?: Array | undefined; }; /** @internal */ export declare const GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; }; /** @internal */ export declare const GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsRequest$outboundSchema: z.ZodType; export declare function getV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsRequestToJSON(getV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsRequest: GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsRequest): string; /** @internal */ export declare const GetV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsResponse$inboundSchema: z.ZodType; export declare function getV1EmployeesEmployeeIdI9AuthorizationDocumentOptionsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1employeesemployeeidi9authorizationdocumentoptions.d.ts.map