ListFeedbackResponse
Paginated list object containing feedback entries with cursor-based pagination metadata.
Example Usage
typescript
import { ListFeedbackResponse } from "@meetkai/mka1/models/components";
let value: ListFeedbackResponse = {
object: "list",
data: [],
hasMore: true,
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
object | "list" | ✔️ | The object type, always 'list' for paginated list responses. |
data | components.ListFeedbackResponseData[] | ✔️ | Array of feedback entries ordered by creation date of the underlying request. |
firstId | string | ➖ | The ID of the first feedback entry in the current page. Used as a reference point for pagination. |
lastId | string | ➖ | The ID of the last feedback entry in the current page. Used as a cursor for fetching the next page. |
hasMore | boolean | ✔️ | Indicates whether there are more feedback entries available beyond the current page. True if additional pages exist. |