Interface ChatActionUsernameChanged

Channel username has been changed

interface ChatActionUsernameChanged {
    new: string;
    old: string;
    type: "username_changed";
}

Properties

Properties

new: string

New username

old: string

Old username

type: "username_changed"