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