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/IOmnichannelCannedResponse.ts

18 lines
434 B

import { ILivechatDepartment } from './ILivechatDepartment';
import { IRocketChatRecord } from './IRocketChatRecord';
import { IUser } from './IUser';
export interface IOmnichannelCannedResponse extends IRocketChatRecord {
shortcut: string;
text: string;
scope: string;
tags: any;
userId: IUser['_id'];
departmentId?: ILivechatDepartment['_id'];
createdBy: {
_id: IUser['_id'];
username: string;
};
_createdAt: Date;
}