com.longport.quote.UpdateWatchlistGroup 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;
@SuppressWarnings("unused")
public class UpdateWatchlistGroup {
private long id;
private String name;
private String[] securities;
private SecuritiesUpdateMode mode;
public UpdateWatchlistGroup(long id) {
this.id = id;
this.mode = SecuritiesUpdateMode.Replace;
}
public UpdateWatchlistGroup setName(String name) {
this.name = name;
return this;
}
public UpdateWatchlistGroup setSecurities(String[] securities) {
this.securities = securities;
return this;
}
public UpdateWatchlistGroup setMode(SecuritiesUpdateMode mode) {
this.mode = mode;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy