HelpScout Integration

This commit is contained in:
ricardo
2020-03-16 22:02:48 -04:00
parent 24670cb7ee
commit 07246a0b15
15 changed files with 4085 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
import { IDataObject } from "n8n-workflow";
export interface IAttachment {
fileName?: string;
mimeType?: string;
data?: string;
}
export interface IThread {
createdAt?: string;
customer?: IDataObject;
imported?: boolean;
text?: string;
attachments?: IAttachment[];
}