com.longport.quote.Depth 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 Depth {
private int position;
private BigDecimal price;
private long volume;
private long orderNum;
public int getPosition() {
return position;
}
public BigDecimal getPrice() {
return price;
}
public long getVolume() {
return volume;
}
public long getOrderNum() {
return orderNum;
}
@Override
public String toString() {
return "Depth [orderNum=" + orderNum + ", position=" + position + ", price=" + price + ", volume=" + volume
+ "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy