com.longport.trade.GetHistoryExecutionsOptions 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.time.OffsetDateTime;
@SuppressWarnings("unused")
public class GetHistoryExecutionsOptions {
private String symbol;
private OffsetDateTime startAt;
private OffsetDateTime endAt;
public GetHistoryExecutionsOptions setSymbol(String symbol) {
this.symbol = symbol;
return this;
}
public GetHistoryExecutionsOptions setStartAt(OffsetDateTime startAt) {
this.startAt = startAt;
return this;
}
public GetHistoryExecutionsOptions setEndAt(OffsetDateTime endAt) {
this.endAt = endAt;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy