Interface ChatEventActiveUsernamesChanged

The chat active usernames were changed. Subtype of ChatEventAction.

interface ChatEventActiveUsernamesChanged {
    @type: "chatEventActiveUsernamesChanged";
    new_usernames: string[];
    old_usernames: string[];
}

Properties

@type: "chatEventActiveUsernamesChanged"
new_usernames: string[]

New list of active usernames.

old_usernames: string[]

Previous list of active usernames.