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

Indexable

[k: string]: unknown

Properties

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

Generated using TypeDoc