@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
14 lines (13 loc) • 395 B
TypeScript
import { Customer, CustomerContact, CustomerLocation } from '.';
/**
* Interface defining the property object that describes the customer tuple.
*
* @see [CustomerTuple](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @OvationCXMApi
*/
export interface CustomerTuple {
customer: Customer;
customerContact: CustomerContact;
customerLocation: CustomerLocation;
}