Код: Выделить всё
public class User {
private Long userID;
private String name;
//DOC later
private UserType userType;
private Payment payment;
Код: Выделить всё
public class Payment {
private UUID paymentID;
private User userID;
private PaymentType paymentType;
private Boolean isRefund;
private double amount;