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

io.rocketbase.commons.dto.authentication.UpdateProfileRequest Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
package io.rocketbase.commons.dto.authentication;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;
import java.util.Map;

@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class UpdateProfileRequest implements Serializable {

    private String firstName;

    private String lastName;

    private String avatar;

    /**
     * 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; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy