Interface Department

interface Department {
    _id: string;
    approverIds: string[];
    emailList: EmailList[];
    icsLink: string;
    memberCount: number;
    memberIds: string[];
    name: string;
}

Hierarchy

Properties

_id: string

unique identifier

approverIds: string[]

list of users who are approvers for the department

emailList: EmailList[]

defintion of subscribers

icsLink: string

ics link for viewing absences in external applications, prefix: https://app.absence.io/

memberCount: number

count of users who are members of the department

memberIds: string[]

list of users who are members of the department

name: string

the name of the department

Generated using TypeDoc