import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { EmployeeSection603HighEarnerStatus } from "../components/employeesection603highearnerstatus.js"; import { EmployeeSection603HighEarnerStatusCreateRequest, EmployeeSection603HighEarnerStatusCreateRequest$Outbound } from "../components/employeesection603highearnerstatuscreaterequest.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 PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesHeaderXGustoAPIVersion: { 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 PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesHeaderXGustoAPIVersion = ClosedEnum; export type PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesRequest = { /** * 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?: PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeUuid: string; employeeSection603HighEarnerStatusCreateRequest: EmployeeSection603HighEarnerStatusCreateRequest; }; export type PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesResponse = { httpMeta: HTTPMetadata; /** * created */ employeeSection603HighEarnerStatus?: EmployeeSection603HighEarnerStatus | undefined; }; /** @internal */ export declare const PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesRequest$Outbound = { "X-Gusto-API-Version": string; employee_uuid: string; "Employee-Section603-High-Earner-Status-Create-Request": EmployeeSection603HighEarnerStatusCreateRequest$Outbound; }; /** @internal */ export declare const PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesRequest$outboundSchema: z.ZodType; export declare function postV1EmployeesEmployeeUuidSection603HighEarnerStatusesRequestToJSON(postV1EmployeesEmployeeUuidSection603HighEarnerStatusesRequest: PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesRequest): string; /** @internal */ export declare const PostV1EmployeesEmployeeUuidSection603HighEarnerStatusesResponse$inboundSchema: z.ZodType; export declare function postV1EmployeesEmployeeUuidSection603HighEarnerStatusesResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postv1employeesemployeeuuidsection603highearnerstatuses.d.ts.map