Interface InviteEvent

Подія запрошення до чату.

interface InviteEvent {
    conversation: ConversationInfo;
    conversation_id: string;
    invite_id: string;
    members: ChatChannel[];
    messages: Message[];
    timestamp: number;
    title: string;
    variables?: CallVariables;
}

Hierarchy (view full)

Properties

conversation: ConversationInfo

Інформація про розмову.

conversation_id: string

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

invite_id: string

Ідентифікатор запрошення.

members: ChatChannel[]

Члени чату.

messages: Message[]

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

timestamp: number

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

title: string

Назва розмови.

variables?: CallVariables

Змінні виклику.