com.longport.quote.CapitalDistribution 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.quote;
import java.math.BigDecimal;
public class CapitalDistribution {
private BigDecimal large;
private BigDecimal medium;
private BigDecimal small;
public BigDecimal getLarge() {
return large;
}
public BigDecimal getMedium() {
return medium;
}
public BigDecimal getSmall() {
return small;
}
@Override
public String toString() {
return "CapitalDistribution [large=" + large + ", medium=" + medium + ", small=" + small + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy