import type * as Merge from "../../../index"; /** * The type of time off request. * * * `VACATION` - VACATION * * `SICK` - SICK * * `PERSONAL` - PERSONAL * * `JURY_DUTY` - JURY_DUTY * * `VOLUNTEER` - VOLUNTEER * * `BEREAVEMENT` - BEREAVEMENT */ export type TimeOffRequestType = Merge.hris.RequestTypeEnum | string;