Type Alias Thread

type Thread = {
    createdAt: string;
    deletedAt?: string;
    favorite: boolean;
    hasFeedback: boolean;
    id: string;
    name: string;
    ownerId: string;
    summaryStats: FeedbackSummary;
    updatedAt: string;
}
Index

Properties

createdAt: string

Datetime when the thread was created.

deletedAt?: string

Datetime when the thread was deleted.

favorite: boolean

If thread is marked as favorite.

hasFeedback: boolean

If feedback was provided for a thread interaction.

id: string

Unique identifier of the thread.

name: string

The name of the thread.

ownerId: string
summaryStats: FeedbackSummary
updatedAt: string

Datetime when the thread was updated.