Interface Allowance

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

Hierarchy

Properties

_id: string

the unique id of the allowance

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