21 lines
393 B
Java
21 lines
393 B
Java
package ru.soune.nocopy.dto.user;
|
|||
|
|
|
||
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
||
|
|
import lombok.Data;
|
||
|
|
|
||
|
|
@Data
|
||
|
|
public class UserAdditionalInfoBody {
|
||
|
|
|
||
|
|
@JsonProperty("action")
|
||
|
|
private String action;
|
||
|
|
|
||
|
|
@JsonProperty("user_id")
|
||
|
|
private Long userId;
|
||
|
|
|
||
|
|
@JsonProperty("ip_address")
|
||
|
|
private String ipAddress;
|
||
|
|
|
||
|
|
@JsonProperty("user_agent")
|
||
|
|
private String userAgent;
|
||
|
|
}
|