ListFeedbackResponseData
Feedback entry in a list, including the model that produced the rated output.
Example Usage
typescript
import { ListFeedbackResponseData } from "@meetkai/mka1/models/components";
let value: ListFeedbackResponseData = {
id: "<id>",
model: "Camry",
createdAt: new Date("2024-02-09T12:38:37.240Z"),
updatedAt: new Date("2025-02-07T21:00:31.113Z"),
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
id | string | ✔️ | The request ID that this feedback is associated with |
rating | components.ListFeedbackResponseRating | ➖ | The feedback rating indicating user satisfaction |
description | string | ➖ | Optional detailed feedback description providing additional context or explanation |
model | string | ✔️ | The model that produced the rated output. |
createdAt | Date | ✔️ | Timestamp when the underlying output was created |
updatedAt | Date | ✔️ | Timestamp when the underlying output record was last updated |