@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
15 lines (14 loc) • 365 B
TypeScript
/**
* 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;
}