Event compaction data structure containing the summarized content and the timestamp range it covers.

interface EventCompaction {
    startTimestamp: number;
    endTimestamp: number;
    compactedContent: Content;
}

Properties

startTimestamp: number
endTimestamp: number
compactedContent: Content