
com.tigerbrokers.stock.openapi.client.https.response.quote.QuoteDepthResponse Maven / Gradle / Ivy
package com.tigerbrokers.stock.openapi.client.https.response.quote;
import com.alibaba.fastjson.annotation.JSONField;
import com.tigerbrokers.stock.openapi.client.https.domain.quote.item.QuoteDepthItem;
import com.tigerbrokers.stock.openapi.client.https.response.TigerResponse;
import java.util.List;
/**
* author:ltc
* date:2019/08/13
*/
public class QuoteDepthResponse extends TigerResponse {
@JSONField(name = "data")
private List quoteDepthItems;
public List getQuoteDepthItems() {
return quoteDepthItems;
}
public void setQuoteDepthItems(List quoteDepthItems) {
this.quoteDepthItems = quoteDepthItems;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy