n8n/packages/nodes-base/nodes/HelpScout/ConversationInterface.ts
2020-03-29 19:10:54 +02:00

19 lines
373 B
TypeScript

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;
}