ConversationListObject
Example Usage
typescript
import { ConversationListObject } from "@meetkai/mka1/models/components";
let value: ConversationListObject = {
object: "list",
data: [
{
id: "<id>",
object: "conversation",
createdAt: 8686.74,
},
],
hasMore: false,
};Fields
| Field | Type | Required | Description |
|---|---|---|---|
object | "list" | ✔️ | N/A |
data | components.ConversationObject[] | ✔️ | Array of conversations |
hasMore | boolean | ✔️ | Whether there are more conversations |
lastId | string | ➖ | ID of the last conversation in the current page |