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