UNPKG

n8n-nodes-espocrm

Version:

n8n Community Node for EspoCRM

21 lines (20 loc) 615 B
import { IBaseEntity } from './EspoCRMTypes'; export interface IAccountData extends IBaseEntity { name: string; type?: string; website?: string; industry?: string; phoneNumber?: string; sicCode?: string; billingAddressStreet?: string; billingAddressCity?: string; billingAddressState?: string; billingAddressCountry?: string; billingAddressPostalCode?: string; shippingAddressStreet?: string; shippingAddressCity?: string; shippingAddressState?: string; shippingAddressCountry?: string; shippingAddressPostalCode?: string; description?: string; }