All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.intelie.live.plugins.messenger.data.UserUpdateInfo Maven / Gradle / Ivy

The newest version!
package net.intelie.live.plugins.messenger.data;

public class UserUpdateInfo extends UserData {
    private boolean isNewUser;

    public UserUpdateInfo(UserData user) {
        this(user, false);
    }

    public UserUpdateInfo(UserData user, boolean isNewUser) {
        super(user.getId(), user.getName());
        this.isNewUser = isNewUser;
    }

    public boolean isNewUser() {
        return isNewUser;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy