Interface NewDepartment

interface NewDepartment {
    approverIds?: string[];
    emailList?: EmailList[];
    memberIds?: string[];
    name: string;
}

Properties

approverIds?: string[]

list of users who are approvers for the department

emailList?: EmailList[]

defintion of subscribers

memberIds?: string[]

list of users who are members of the department

name: string

the name of the department

Generated using TypeDoc