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;
}
