interface Chat {
    attachments: Attachment[];
    createdAt: string;
    createdBy: Actor;
    customerReadAt: null | string;
    id: string;
    text?: null | string;
    timelineEntryId: string;
    updatedAt: string;
    updatedBy: Actor;
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

attachments: Attachment[]
createdAt: string
createdBy: Actor
customerReadAt: null | string
id: string
text?: null | string
timelineEntryId: string
updatedAt: string
updatedBy: Actor

Generated using TypeDoc