io.rocketbase.commons.dto.appuser.AppUserUpdate Maven / Gradle / Ivy
package io.rocketbase.commons.dto.appuser;
import lombok.*;
import java.io.Serializable;
import java.util.List;
import java.util.Map;
/**
* null properties mean let value as it is
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
@ToString(exclude = {"password"})
public class AppUserUpdate implements Serializable {
private String password;
private String firstName;
private String lastName;
private String avatar;
private List roles;
/**
* will removed key that have value of null
* will only add/replace new/existing key values
* not mentioned key will still stay the same
*/
private Map keyValues;
private Boolean enabled;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy