com.longport.quote.TradingSessionInfo 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.time.LocalTime;
public class TradingSessionInfo {
private LocalTime beginTime;
private LocalTime endTime;
private TradeSession tradeSession;
public LocalTime getBeginTime() {
return beginTime;
}
public LocalTime getEndTime() {
return endTime;
}
public TradeSession getTradeSession() {
return tradeSession;
}
@Override
public String toString() {
return "TradingSessionInfo [beginTime=" + beginTime + ", endTime=" + endTime + ", tradeSession=" + tradeSession
+ "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy