2023-01-27 03:22:44 -08:00
|
|
|
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;
|
2023-01-25 04:35:57 -08:00
|
|
|
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;
|
|
|
|
}
|