mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ HelpScout Integration
This commit is contained in:
18
packages/nodes-base/nodes/HelpScout/ConversationInterface.ts
Normal file
18
packages/nodes-base/nodes/HelpScout/ConversationInterface.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user