com.longport.quote.Subscription 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.util.Arrays;
public class Subscription {
private String symbol;
private int subTypes;
private Period[] candlesticks;
public String getSymbol() {
return symbol;
}
public int getSubTypes() {
return subTypes;
}
public Period[] getCandlesticks() {
return candlesticks;
}
@Override
public String toString() {
return "Subscription [candlesticks=" + Arrays.toString(candlesticks) + ", subTypes=" + subTypes + ", symbol="
+ symbol + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy