package com.yami.trading.huobi.websocket.client.req.account;
|
|
import java.math.BigDecimal;
|
|
import lombok.*;
|
|
import com.yami.trading.huobi.websocket.constant.enums.AccountTransferAccountTypeEnum;
|
|
@Data
|
@Builder
|
@AllArgsConstructor
|
@NoArgsConstructor
|
@ToString
|
public class AccountTransferRequest {
|
|
private Long fromUser;
|
|
private AccountTransferAccountTypeEnum fromAccountType;
|
|
private Long fromAccount;
|
|
private Long toUser;
|
|
private AccountTransferAccountTypeEnum toAccountType;
|
|
private Long toAccount;
|
|
private String currency;
|
|
private BigDecimal amount;
|
|
}
|