UNPKG

@goboomtown/entities

Version:

entities in typescript format. This includes: - Customer

18 lines (17 loc) 449 B
/** * Interface defining the property object that describes the cases chat history transcript. * * @see [CaseChatHistoryTranscript](https://github.com/goboomtown/entities-ts/tree/master/docs) * * @OvationCXMApi */ export interface CaseChatHistoryTranscript { chatId?: string; participant?: string; participantId?: string; timestamp?: string; hadPayload?: boolean; text?: string; user?: string; chat?: string; }