Interface DeclineInviteEvent

Подія відмови від запрошення.

interface DeclineInviteEvent {
    cause?: null | DeclineCause;
    conversation_id: string;
    invite_id: string;
    timestamp: number;
    user_id: number;
}

Hierarchy (view full)

Properties

cause?: null | DeclineCause

Причина відмови.

conversation_id: string

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

invite_id: string

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

timestamp: number

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

user_id: number

Ідентифікатор користувача, який відмовився.