Package com.longbridge.trade
Class CashInfo
- java.lang.Object
-
- com.longbridge.trade.CashInfo
-
public class CashInfo extends Object
Cash balance information for a single currency
-
-
Constructor Summary
Constructors Constructor Description CashInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimalgetAvailableCash()Returns the available cash amount.StringgetCurrency()Returns the currency.BigDecimalgetFrozenCash()Returns the frozen cash amount.BigDecimalgetSettlingCash()Returns the settling cash amount.BigDecimalgetWithdrawCash()Returns the withdrawable cash amount.StringtoString()
-
-
-
Method Detail
-
getWithdrawCash
public BigDecimal getWithdrawCash()
Returns the withdrawable cash amount.- Returns:
- withdrawable cash
-
getAvailableCash
public BigDecimal getAvailableCash()
Returns the available cash amount.- Returns:
- available cash
-
getFrozenCash
public BigDecimal getFrozenCash()
Returns the frozen cash amount.- Returns:
- frozen cash
-
getSettlingCash
public BigDecimal getSettlingCash()
Returns the settling cash amount.- Returns:
- settling cash
-
getCurrency
public String getCurrency()
Returns the currency.- Returns:
- currency
-
-