Interface MessageEvent

Подія повідомлення в чаті.

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

Hierarchy (view full)

Properties

channel_id: string

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

contact?: object

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

conversation_id: string

Ідентифікатор розмови.

created_at: number

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

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

id: number

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

text: string

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

timestamp: number

Час події (Unix timestamp).

type: string

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

updated_at?: null | number

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