Interface NewAllowance

interface NewAllowance {
    active: boolean;
    initialAllowance: number;
    name: string;
    residualLeaveAvailable: boolean;
}

Properties

active: boolean

indicates if it can be used currently.

initialAllowance: number

the intial amount of days a user will have per year

name: string

the display name of the allowance

residualLeaveAvailable: boolean

indicates if unu

Generated using TypeDoc