ix-entities
Version:
IX entities in typescript format. This includes: - Customer
27 lines (26 loc) • 651 B
TypeScript
import { CustomerStatusEnum, IndustryEnum } from "../enum";
/**
* Interface defining the property object that describes the customer.
*
* @see [Customer](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @BoomtownApi
*/
export interface Customer {
id: string;
name: string;
nameLegal?: string;
street1?: string;
street2?: string;
city?: string;
state?: string;
zipcode: string;
email: string;
phone?: string;
externalId?: string;
industry?: IndustryEnum;
status?: CustomerStatusEnum;
created?: Date;
latitude?: number;
longitude?: number;
}