@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
17 lines (16 loc) • 422 B
TypeScript
/**
* Interface defining the property object that describes the cases status history.
*
* @see [CaseStatusHistory](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @OvationCXMApi
*/
export interface CaseStatusHistory {
created?: string;
type?: string;
status?: string;
resolution?: string;
scheduledTime?: string;
ticketSummaryText?: string;
historySummaryText?: string;
}