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