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