Interface UpdateUser

Some data of a user has changed. This update is guaranteed to come before the user identifier is returned to the application. Subtype of Update.

interface UpdateUser {
    @type: "updateUser";
    user: User;
}

Properties

Properties

@type: "updateUser"
user: User

New data about the user.