Interface Message

Інтерфейс для повідомлення в чаті.

interface Message {
    channel_id: string;
    contact?: object;
    created_at: number;
    file?: MessageFile;
    id: number;
    text: string;
    type: string;
    updated_at?: null | number;
}

Hierarchy (view full)

Properties

channel_id: string

Ідентифікатор каналу.

contact?: object

Контактна інформація.

created_at: number

Час створення.

Файл, прикріплений до повідомлення.

id: number

Ідентифікатор повідомлення.

text: string

Текст повідомлення.

type: string

Тип повідомлення.

updated_at?: null | number

Час оновлення.