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

28 lines
530 B

import { IRocketChatRecord } from './IRocketChatRecord';
export interface IIntegrationHistory extends IRocketChatRecord {
type: string;
step: string;
integration: {
_id: string;
};
event: string;
_createdAt: Date;
_updatedAt: Date;
data?: {
user?: any;
room?: any;
};
ranPrepareScript: boolean;
finished: boolean;
triggerWord?: string;
prepareSentMessage?: string;
processSentMessage?: string;
url?: string;
httpCallData?: string;
httpError?: any;
httpResult?: string;
error?: any;
errorStack?: any;
}