Skip to content

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

FieldTypeRequiredDescription
object"list"✔️N/A
datacomponents.ConversationObject[]✔️Array of conversations
hasMoreboolean✔️Whether there are more conversations
lastIdstringID of the last conversation in the current page