Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/HelpScout/ConversationInterface.ts
2025-09-08 04:48:28 +08:00

20 lines
400 B
TypeScript
Executable File

import type { 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;
tag?: IDataObject[];
tags?: IDataObject[];
threads?: IDataObject[];
type?: string;
user?: number;
}