n8n-nodes-base
Version:
Base nodes of n8n
20 lines • 540 B
TypeScript
import type { 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[];
}
//# sourceMappingURL=CustomerInterface.d.ts.map