n8n/packages/nodes-base/nodes/HelpScout/ConversationInterface.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
400 B
TypeScript
Raw Normal View History

import type { IDataObject } from 'n8n-workflow';
2020-03-16 19:02:48 -07:00
export interface IConversation {
assignTo?: number;
autoReply?: boolean;
closedAt?: string;
createdAt?: string;
customer?: IDataObject;
fields?: IDataObject[];
imported?: boolean;
2020-03-29 10:10:54 -07:00
mailboxId?: number;
status?: string;
subject?: string;
tag?: IDataObject[];
2020-03-16 19:02:48 -07:00
tags?: IDataObject[];
threads?: IDataObject[];
2020-03-29 10:10:54 -07:00
type?: string;
2020-03-16 19:02:48 -07:00
user?: number;
}