Type Alias Interaction

type Interaction = {
    createdAt: string;
    feedback?: Feedback;
    id: string;
    ownerId: string;
    rejected?: boolean;
    request: string;
    response: string;
    sources: MessageSource[];
    threadId: string;
    updatedAt: string;
}
Index

Properties

createdAt: string

Datetime when the interaction was created.

feedback?: Feedback
id: string
ownerId: string
rejected?: boolean
request: string
response: string
sources: MessageSource[]
threadId: string
updatedAt: string