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 { RecurringReimbursement } from "../components/recurringreimbursement.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 PostV1EmployeesEmployeeIdRecurringReimbursementsHeaderXGustoAPIVersion: { 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 PostV1EmployeesEmployeeIdRecurringReimbursementsHeaderXGustoAPIVersion = ClosedEnum; export type PostV1EmployeesEmployeeIdRecurringReimbursementsRequestBody = { /** * The description of the reimbursement */ description: string; /** * The dollar amount of the reimbursement */ amount: number; }; export type PostV1EmployeesEmployeeIdRecurringReimbursementsRequest = { /** * 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?: PostV1EmployeesEmployeeIdRecurringReimbursementsHeaderXGustoAPIVersion | undefined; /** * The UUID of the employee */ employeeId: string; requestBody: PostV1EmployeesEmployeeIdRecurringReimbursementsRequestBody; }; export type PostV1EmployeesEmployeeIdRecurringReimbursementsResponse = { httpMeta: HTTPMetadata; /** * successful */ recurringReimbursement?: RecurringReimbursement | undefined; }; /** @internal */ export declare const PostV1EmployeesEmployeeIdRecurringReimbursementsHeaderXGustoAPIVersion$outboundSchema: z.ZodNativeEnum; /** @internal */ export type PostV1EmployeesEmployeeIdRecurringReimbursementsRequestBody$Outbound = { description: string; amount: number; }; /** @internal */ export declare const PostV1EmployeesEmployeeIdRecurringReimbursementsRequestBody$outboundSchema: z.ZodType; export declare function postV1EmployeesEmployeeIdRecurringReimbursementsRequestBodyToJSON(postV1EmployeesEmployeeIdRecurringReimbursementsRequestBody: PostV1EmployeesEmployeeIdRecurringReimbursementsRequestBody): string; /** @internal */ export type PostV1EmployeesEmployeeIdRecurringReimbursementsRequest$Outbound = { "X-Gusto-API-Version": string; employee_id: string; RequestBody: PostV1EmployeesEmployeeIdRecurringReimbursementsRequestBody$Outbound; }; /** @internal */ export declare const PostV1EmployeesEmployeeIdRecurringReimbursementsRequest$outboundSchema: z.ZodType; export declare function postV1EmployeesEmployeeIdRecurringReimbursementsRequestToJSON(postV1EmployeesEmployeeIdRecurringReimbursementsRequest: PostV1EmployeesEmployeeIdRecurringReimbursementsRequest): string; /** @internal */ export declare const PostV1EmployeesEmployeeIdRecurringReimbursementsResponse$inboundSchema: z.ZodType; export declare function postV1EmployeesEmployeeIdRecurringReimbursementsResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=postv1employeesemployeeidrecurringreimbursements.d.ts.map