Interface AnalyticsMessage

A single course-analytics message, from the user or the assistant.

interface AnalyticsMessage {
    courseId: string;
    createdAt: Date;
    data: AnalyticsMessageData;
    messageId: string;
}

Properties

courseId: string

The id of the course this message belongs to.

createdAt: Date

When this message was created.

The data of the message, which differs between user and assistant messages.

messageId: string

The sequence number of this message within the conversation.