import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { RFCDate } from "../../types/rfcdate.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A single pay period in a pay schedule preview, with check date, period boundaries, and payroll deadline. */ export type PaySchedulePreviewPayPeriod = { /** * The payment date, "Check date", for the pay period. */ checkDate: RFCDate; /** * The first day of the pay period. */ startDate: RFCDate; /** * The deadline to run payroll for direct deposit on the check date. */ runPayrollBy: RFCDate; /** * The last day of the pay period. */ endDate: RFCDate; }; /** @internal */ export declare const PaySchedulePreviewPayPeriod$inboundSchema: z.ZodType; export declare function paySchedulePreviewPayPeriodFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payschedulepreviewpayperiod.d.ts.map