n8n-nodes-espocrm
Version:
n8n Community Node for EspoCRM
19 lines (18 loc) • 480 B
TypeScript
import { IBaseEntity } from './EspoCRMTypes';
export interface IContactData extends IBaseEntity {
firstName: string;
lastName: string;
name?: string;
emailAddress?: string;
phoneNumber?: string;
title?: string;
accountId?: string;
accountName?: string;
doNotCall?: boolean;
addressStreet?: string;
addressCity?: string;
addressState?: string;
addressCountry?: string;
addressPostalCode?: string;
description?: string;
}