OBJECT

TimeOffRule

Represents time off rule.

link GraphQL Schema definition

1type TimeOffRule {
2
3# Id.
4id: ID
5
6# Time off type.
7timeOffType: TimeOffType
8
9# Time off policy.
10timeOffPolicy: TimeOffPolicy
11
12# Is active.
13isActive: Boolean
14
15# Allocation type.
16allocationType: AllocationType
17
18# Recalculation date.
19recalculationDate: RecalculationDate
20
21# Total allowance.
22totalAllowance: Float
23
24# Accrual frequency.
25accrualFrequency: AccrualFrequency
26
27# Carry over limit.
28carryOverLimit: Int
29
30# Carry over expiration date.
31carryOverExpirationDate: CarryOverExpirationDate
32
33# Is absence.
34isAbsence: Boolean
35
36# Is auto approval enabled.
37isAutoApprovalEnabled: Boolean
38
39# Usage period.
40usagePeriod: UsagePeriod
41
42# Weekly limit.
43weeklyLimit: Int
44
45# Deduction mode.
46deductionMode: DeductionMode
47
48}