UNPKG

@goboomtown/entities

Version:

entities in typescript format. This includes: - Customer

26 lines (25 loc) 549 B
/** * Interface defining the property object that describes the customer. * * @see [Customer](https://github.com/goboomtown/entities-ts/tree/master/docs) * * @OvationCXMApi */ 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?: string; status?: string; created?: Date; latitude?: number; longitude?: number; }