/**
 * Interface defining the property object that describes the cases list options.
 *
 * @see [CasesListOptions](https://github.com/goboomtown/entities-ts/tree/master/docs)
 *
 * @OvationCXMApi
 */
export interface CasesListOptions {
    limit: number;
    start: number;
    customerId?: string;
    customersUsersId?: string;
    customerLocationId?: string;
}
