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