verdnatura-chat/app/definitions/ILivechatDepartment.ts

24 lines
609 B
TypeScript
Raw Normal View History

2022-02-28 18:00:47 +00:00
export interface ILivechatDepartment {
_id: string;
name: string;
enabled: boolean;
description?: string;
showOnRegistration: boolean;
showOnOfflineForm: boolean;
requestTagBeforeClosingChat?: boolean;
email: string;
chatClosingTags?: string[];
offlineMessageChannelName: string;
numAgents: number;
_updatedAt?: Date;
businessHourId?: string;
fallbackForwardDepartment?: string;
2022-05-30 22:02:08 +00:00
maxNumberSimultaneousChat: number;
abandonedRoomsCloseCustomMessage: string;
waitingQueueMessage: string;
departmentsAllowedToForward: string;
ancestors: string[];
2022-02-28 18:00:47 +00:00
// extra optional fields
[k: string]: any;
}