com.longport.trade.OrderHistoryDetail 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;
import java.time.OffsetDateTime;
public class OrderHistoryDetail {
private BigDecimal price;
private long quantity;
private OrderStatus status;
private String msg;
private OffsetDateTime time;
public BigDecimal getPrice() {
return price;
}
public long getQuantity() {
return quantity;
}
public OrderStatus getStatus() {
return status;
}
public String getMsg() {
return msg;
}
public OffsetDateTime getTime() {
return time;
}
@Override
public String toString() {
return "OrderHistoryDetail [price=" + price + ", quantity=" + quantity + ", status=" + status + ", msg=" + msg
+ ", time=" + time + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy