mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
21 lines
441 B
TypeScript
21 lines
441 B
TypeScript
import { IDataObject } from 'n8n-workflow';
|
|
|
|
export interface ICustomer {
|
|
address?: IDataObject;
|
|
age?: string;
|
|
background?: string;
|
|
chats?: IDataObject[];
|
|
emails?: IDataObject[];
|
|
firstName?: string;
|
|
gender?: string;
|
|
jobTitle?: string;
|
|
lastName?: string;
|
|
location?: string;
|
|
organization?: string;
|
|
phones?: IDataObject[];
|
|
photoUrl?: string;
|
|
properties?: IDataObject;
|
|
socialProfiles?: IDataObject[];
|
|
websites?: IDataObject[];
|
|
}
|