Interface MessageWithChannel

Інтерфейс для повідомлення з інформацією про канал.

interface MessageWithChannel {
    channelId: string;
    contact?: null | object;
    createdAt: number;
    file?: MessageFile;
    id: number;
    member: null | ChatChannel;
    text?: string;
    type: string;
    updatedAt: number;
}

Properties

channelId: string

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

contact?: null | object

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

createdAt: number

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

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

id: number

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

member: null | ChatChannel

Член чату, який відправив повідомлення.

text?: string

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

type: string

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

updatedAt: number

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