The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/definition/OmichannelRoutingConfig.ts

18 lines
343 B

import { IRoom } from './IRoom';
export type OmichannelRoutingConfig = {
previewRoom: boolean;
showConnecting: boolean;
showQueue: boolean;
showQueueLink: boolean;
returnQueue: boolean;
enableTriggerAction: boolean;
autoAssignAgent: boolean;
};
export type Inquiries = {
enabled: true;
queue: Array<IRoom>;
} | {
enabled: false;
}