com.longport.trade.FundPosition 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 FundPosition {
private String symbol;
private BigDecimal currentNetAssetValue;
private BigDecimal netAssetValueDay;
private String symbolName;
private String currency;
private BigDecimal costNetAssetValue;
private BigDecimal holdingUnits;
public String getSymbol() {
return symbol;
}
public BigDecimal getCurrentNetAssetValue() {
return currentNetAssetValue;
}
public BigDecimal getNetAssetValueDay() {
return netAssetValueDay;
}
public String getSymbolName() {
return symbolName;
}
public String getCurrency() {
return currency;
}
public BigDecimal getCostNetAssetValue() {
return costNetAssetValue;
}
public BigDecimal getHoldingUnits() {
return holdingUnits;
}
@Override
public String toString() {
return "FundPosition [costNetAssetValue=" + costNetAssetValue + ", currency=" + currency
+ ", currentNetAssetValue=" + currentNetAssetValue + ", holdingUnits=" + holdingUnits
+ ", netAssetValueDay=" + netAssetValueDay + ", symbol=" + symbol + ", symbolName=" + symbolName + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy