interface ChatEntry {
    attachments: ChatEntryAttachment[];
    chatId: string;
    customerReadAt: null | string;
    entryType: "chat";
    text: null | string;
}

Properties

attachments: ChatEntryAttachment[]
chatId: string
customerReadAt: null | string
entryType: "chat"
text: null | string

Generated using TypeDoc