@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
18 lines (17 loc) • 491 B
TypeScript
export interface IDepartment {
id: string;
name?: string;
email?: string;
description?: string;
offlineMessageChannelName?: string;
requestTagBeforeClosingChat?: false;
chatClosingTags?: Array<string>;
abandonedRoomsCloseCustomMessage?: string;
waitingQueueMessage?: string;
departmentsAllowedToForward?: string;
enabled: boolean;
updatedAt: Date;
numberOfAgents: number;
showOnOfflineForm: boolean;
showOnRegistration: boolean;
}