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