ListPromptsResponse
Example Usage
typescript
import { ListPromptsResponse } from "@meetkai/mka1/models/components";
let value: ListPromptsResponse = {
object: "list",
data: [],
hasMore: false,
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
object | "list" | ✔️ | Object type |
data | components.UpdatePromptResponse[] | ✔️ | Array of prompt objects |
hasMore | boolean | ✔️ | Whether there are more results available |
firstId | string | ➖ | ID of the first item in the list |
lastId | string | ➖ | ID of the last item in the list |