Files
2025-09-08 04:48:28 +08:00

13 lines
270 B
TypeScript
Executable File

import type { IDataObject } from 'n8n-workflow';
export interface ICompany {
address?: IDataObject;
company_name?: string;
email_address?: string;
fax_number?: IDataObject;
notes?: string;
opt_in_reason?: string;
phone_number?: IDataObject;
website?: string;
}