import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A paid holiday derived from the company's holiday pay policy */ export type PaidHoliday = { /** * The holiday's identifier (null for custom holidays) */ holidayKey?: string | null | undefined; /** * The holiday's official name */ holidayName?: string | undefined; /** * The holiday's start date (YYYY-MM-DD) */ startDate?: string | undefined; /** * The holiday's end date (YYYY-MM-DD) */ endDate?: string | undefined; }; /** @internal */ export declare const PaidHoliday$inboundSchema: z.ZodType; export declare function paidHolidayFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=paidholiday.d.ts.map