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 { YtdBenefitAmountsFromDifferentCompanyBody, YtdBenefitAmountsFromDifferentCompanyBody$Outbound } from "../components/ytdbenefitamountsfromdifferentcompanybody.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 PostEmployeeYtdBenefitAmountsFromDifferentCompanyHeaderXGustoAPIVersion: { 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 PostEmployeeYtdBenefitAmountsFromDifferentCompanyHeaderXGustoAPIVersion = ClosedEnum; export type PostEmployeeYtdBenefitAmountsFromDifferentCompanyRequest = { /** * 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?: PostEmployeeYtdBenefitAmountsFromDifferentCompanyHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; ytdBenefitAmountsFromDifferentCompanyBody: YtdBenefitAmountsFromDifferentCompanyBody; }; export type PostEmployeeYtdBenefitAmountsFromDifferentCompanyResponse = { httpMeta: HTTPMetadata; }; /** @internal */ export declare const PostEmployeeYtdBenefitAmountsFromDifferentCompanyHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostEmployeeYtdBenefitAmountsFromDifferentCompanyRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; "Ytd-Benefit-Amounts-From-Different-Company-Body": YtdBenefitAmountsFromDifferentCompanyBody$Outbound; }; /** @internal */ export declare const PostEmployeeYtdBenefitAmountsFromDifferentCompanyRequest$outboundSchema: z.ZodType; export declare function postEmployeeYtdBenefitAmountsFromDifferentCompanyRequestToJSON(postEmployeeYtdBenefitAmountsFromDifferentCompanyRequest: PostEmployeeYtdBenefitAmountsFromDifferentCompanyRequest): string; /** @internal */ export declare const PostEmployeeYtdBenefitAmountsFromDifferentCompanyResponse$inboundSchema: z.ZodType; export declare function postEmployeeYtdBenefitAmountsFromDifferentCompanyResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postemployeeytdbenefitamountsfromdifferentcompany.d.ts.map