import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Information about the payroll's status and expected dates */ export type PayrollPayrollStatusMetaType = { /** * true if the payroll may be cancelled. */ cancellable?: boolean | undefined; /** * The date an employee will be paid if the payroll is submitted now. */ expectedCheckDate?: string | undefined; /** * The normal check date for the associated pay period. */ initialCheckDate?: string | undefined; /** * The time the employer's account will be debited if the payroll is submitted now. */ expectedDebitTime?: string | undefined; /** * expected_check_date > initial_check_date. */ payrollLate?: boolean | undefined; /** * Payroll must be submitted at or before this time to avoid late payroll. */ initialDebitCutoffTime?: string | undefined; }; /** @internal */ export declare const PayrollPayrollStatusMetaType$inboundSchema: z.ZodType; export declare function payrollPayrollStatusMetaTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=payrollpayrollstatusmetatype.d.ts.map