@goboomtown/entities
Version:
entities in typescript format. This includes: - Customer
27 lines (26 loc) • 684 B
TypeScript
import { CaseChatHistoryTranscript } from '.';
/**
* Interface defining the property object that describes the cases chat history.
*
* @see [CaseChatHistory](https://github.com/goboomtown/entities-ts/tree/master/docs)
*
* @OvationCXMApi
*/
export interface CaseChatHistory {
id?: string;
objectId?: string;
objectScope?: string;
chatType?: number;
chatStatus?: number;
billingStatus?: number;
title?: string;
subtitle?: string;
durationPlus?: number;
duration?: number;
transcript: CaseChatHistoryTranscript;
externalRpid?: string;
externalLpid?: string;
externalId?: string;
created?: string;
updated?: string;
}