import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { Employee } from "../components/employee.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 GetV1EmployeesHeaderXGustoAPIVersion: { 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 GetV1EmployeesHeaderXGustoAPIVersion = ClosedEnum; export declare const QueryParamInclude: { readonly AllCompensations: "all_compensations"; readonly AllHomeAddresses: "all_home_addresses"; readonly CompanyName: "company_name"; readonly CurrentHomeAddress: "current_home_address"; readonly CustomFields: "custom_fields"; readonly PortalInvitations: "portal_invitations"; }; export type QueryParamInclude = ClosedEnum; export type GetV1EmployeesRequest = { /** * 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?: GetV1EmployeesHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; /** * Include the requested attribute(s) in each employee response. Multiple options are comma separated. */ include?: Array | undefined; }; export type GetV1EmployeesResponse = { httpMeta: HTTPMetadata; /** * successful */ employee?: Employee | undefined; }; /** @internal */ export declare const GetV1EmployeesHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const QueryParamInclude$outboundSchema: z.ZodNativeEnum; /** @internal */ export type GetV1EmployeesRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; include?: Array | undefined; }; /** @internal */ export declare const GetV1EmployeesRequest$outboundSchema: z.ZodType; export declare function getV1EmployeesRequestToJSON(getV1EmployeesRequest: GetV1EmployeesRequest): string; /** @internal */ export declare const GetV1EmployeesResponse$inboundSchema: z.ZodType; export declare function getV1EmployeesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getv1employees.d.ts.map