@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
20 lines (19 loc) • 463 B
TypeScript
/**
* Interface defining the property object that describes the customer contact.
*
* @see [CustomerContact](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @OvationCXMApi
*/
export interface CustomerContact {
id?: string;
customerId: string;
customerLocationId?: string;
firstName: string;
lastName: string;
fullName?: string;
email: string;
smsNumber?: string;
externalId?: string;
lang?: string;
}