com.longport.trade.CashInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-sdk Show documentation
Show all versions of openapi-sdk Show documentation
LongPort OpenAPI SDK for Java
package com.longport.trade;
import java.math.BigDecimal;
public class CashInfo {
private BigDecimal withdrawCash;
private BigDecimal availableCash;
private BigDecimal frozenCash;
private BigDecimal settlingCash;
private String currency;
public BigDecimal getWithdrawCash() {
return withdrawCash;
}
public BigDecimal getAvailableCash() {
return availableCash;
}
public BigDecimal getFrozenCash() {
return frozenCash;
}
public BigDecimal getSettlingCash() {
return settlingCash;
}
public String getCurrency() {
return currency;
}
@Override
public String toString() {
return "CashInfo [availableCash=" + availableCash + ", currency=" + currency + ", frozenCash=" + frozenCash
+ ", settlingCash=" + settlingCash + ", withdrawCash=" + withdrawCash + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy