Skip to content

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

FieldTypeRequiredDescription
object"list"✔️The object type, always 'list' for paginated list responses.
datacomponents.ListFeedbackResponseData[]✔️Array of feedback entries ordered by creation date of the underlying request.
firstIdstringThe ID of the first feedback entry in the current page. Used as a reference point for pagination.
lastIdstringThe ID of the last feedback entry in the current page. Used as a cursor for fetching the next page.
hasMoreboolean✔️Indicates whether there are more feedback entries available beyond the current page. True if additional pages exist.