UNPKG

@goboomtown/entities

Version:

entities in typescript format. This includes: - Customer

16 lines (15 loc) 545 B
import { InteractionEventBody, InteractionEventRefs, InteractionEventType, InteractionEventCategory } from '.'; /** * Interface defining the property object that describes the case log interaction event. * @see [CaseLogInteractionEvent](https://github.com/goboomtown/entities-ts/tree/master/docs) * * @OvationCXMApi */ export interface CaseLogInteractionEvent { body: InteractionEventBody; refs: InteractionEventRefs; type: InteractionEventType; logId: string; created: string; category: InteractionEventCategory; }