@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
17 lines (16 loc) • 515 B
TypeScript
import { Customer, CustomerContact, CustomerLookupLocation } from '.';
/**
* Interface defining the property object that describes the customer lookup tuple.
*
* @see [CustomerLookupTuple](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @OvationCXMApi
*/
export interface CustomerLookupTuple {
customersId: string;
customersUsersId: string;
customersLocationsId: string;
customer: Customer;
customerContact: CustomerContact;
customerLocation: CustomerLookupLocation;
}