interface TimelineEntry {
    actor: Actor;
    customerId: string;
    entry: NoteEntry | ChatEntry | EmailEntry | CustomEntry;
    id: string;
    threadId?: null | string;
    timestamp: string;
}

Properties

actor: Actor
customerId: string
id: string
threadId?: null | string
timestamp: string

Generated using TypeDoc