
com.webull.openapi.trade.api.response.OrderItem Maven / Gradle / Ivy
/*
* Copyright 2022 Webull Technologies Pte. Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.webull.openapi.trade.api.response;
public class OrderItem {
protected String category;
protected String filledPrice;
protected String filledQty;
protected String lastFilledTime;
protected String limitPrice;
protected String orderStatus;
protected String orderType;
protected String placeTime;
protected String qty;
protected String side ;
protected String stopPrice;
protected String shortName;
protected String trailingStopStep;
protected String trailingType;
protected String instrumentId;
protected String currency;
protected String symbol;
public String getCategory() {
return category;
}
public void setCategory(String category) {
this.category = category;
}
public String getFilledPrice() {
return filledPrice;
}
public void setFilledPrice(String filledPrice) {
this.filledPrice = filledPrice;
}
public String getFilledQty() {
return filledQty;
}
public void setFilledQty(String filledQty) {
this.filledQty = filledQty;
}
public String getLastFilledTime() {
return lastFilledTime;
}
public void setLastFilledTime(String lastFilledTime) {
this.lastFilledTime = lastFilledTime;
}
public String getLimitPrice() {
return limitPrice;
}
public void setLimitPrice(String limitPrice) {
this.limitPrice = limitPrice;
}
public String getOrderStatus() {
return orderStatus;
}
public void setOrderStatus(String orderStatus) {
this.orderStatus = orderStatus;
}
public String getOrderType() {
return orderType;
}
public void setOrderType(String orderType) {
this.orderType = orderType;
}
public String getPlaceTime() {
return placeTime;
}
public void setPlaceTime(String placeTime) {
this.placeTime = placeTime;
}
public String getQty() {
return qty;
}
public void setQty(String qty) {
this.qty = qty;
}
public String getSide() {
return side;
}
public void setSide(String side) {
this.side = side;
}
public String getStopPrice() {
return stopPrice;
}
public void setStopPrice(String stopPrice) {
this.stopPrice = stopPrice;
}
public String getShortName() {
return shortName;
}
public void setShortName(String shortName) {
this.shortName = shortName;
}
public String getTrailingStopStep() {
return trailingStopStep;
}
public void setTrailingStopStep(String trailingStopStep) {
this.trailingStopStep = trailingStopStep;
}
public String getTrailingType() {
return trailingType;
}
public void setTrailingType(String trailingType) {
this.trailingType = trailingType;
}
public String getInstrumentId() {
return instrumentId;
}
public void setInstrumentId(String instrumentId) {
this.instrumentId = instrumentId;
}
public String getCurrency() {
return currency;
}
public void setCurrency(String currency) {
this.currency = currency;
}
public String getSymbol() {
return symbol;
}
public void setSymbol(String symbol) {
this.symbol = symbol;
}
@Override
public String toString() {
return "OrderItem{" +
"category='" + category + '\'' +
", filledPrice='" + filledPrice + '\'' +
", filledQty='" + filledQty + '\'' +
", lastFilledTime='" + lastFilledTime + '\'' +
", limitPrice='" + limitPrice + '\'' +
", orderStatus='" + orderStatus + '\'' +
", orderType='" + orderType + '\'' +
", placeTime='" + placeTime + '\'' +
", qty='" + qty + '\'' +
", side='" + side + '\'' +
", stopPrice='" + stopPrice + '\'' +
", shortName='" + shortName + '\'' +
", trailingStopStep='" + trailingStopStep + '\'' +
", trailingType='" + trailingType + '\'' +
", instrumentId='" + instrumentId + '\'' +
", currency='" + currency + '\'' +
", symbol='" + symbol + '\'' +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy