@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
26 lines (25 loc) • 677 B
TypeScript
import { CaseLogInteractionEvent } from '.';
/**
* Interface defining the property object that describes the case log.
* @see [CaseLog](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @OvationCXMApi
*/
export interface CaseLog {
id: string;
issuesId: string;
usersFullName: string;
usersNickname: string;
usersCertifications: string[];
diffLog: string;
interactionEvent: CaseLogInteractionEvent;
notes: string;
created: string;
eventCategory: string;
eventCategoryLabel: string;
eventType: string;
eventTypeLabel: string;
fromIssueSave: boolean;
highlighted: boolean;
highlightmap: string;
}