com.longport.quote.WatchlistGroup 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 WatchlistGroup {
private long id;
private String name;
private WatchlistSecurity[] securities;
public long getId() {
return id;
}
public String getName() {
return name;
}
public WatchlistSecurity[] getSecurities() {
return securities;
}
@Override
public String toString() {
return "WatchlistGroup [id=" + id + ", name=" + name + ", securities=" + Arrays.toString(securities) + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy