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,18 @@
import { IDataObject } from "n8n-workflow";
export interface IConversation {
assignTo?: number;
autoReply?: boolean;
closedAt?: string;
createdAt?: string;
customer?: IDataObject;
fields?: IDataObject[];
imported?: boolean;
mailboxId?: number; //
status?: string; //
subject?: string; //
tags?: IDataObject[];
threads?: IDataObject[];
type?: string; //
user?: number;
}