Interface UpdateUserStatus

The user went online or offline. Subtype of Update.

interface UpdateUserStatus {
    @type: "updateUserStatus";
    status: UserStatus;
    user_id: number;
}

Properties

Properties

@type: "updateUserStatus"
status: UserStatus

New status of the user.

user_id: number

User identifier.