com.longport.quote.StrikePriceInfo 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 StrikePriceInfo {
private BigDecimal price;
private String callSymbol;
private String putSymbol;
private boolean standard;
public BigDecimal getPrice() {
return price;
}
public String getCallSymbol() {
return callSymbol;
}
public String getPutSymbol() {
return putSymbol;
}
public boolean isStandard() {
return standard;
}
@Override
public String toString() {
return "StrikePriceInfo [callSymbol=" + callSymbol + ", price=" + price + ", putSymbol=" + putSymbol
+ ", standard=" + standard + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy