All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tigerbrokers.stock.openapi.client.https.response.quote.KlineQuotaResponse 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.QuotaItem;
import com.tigerbrokers.stock.openapi.client.https.response.TigerResponse;
import java.util.List;

/**
 * Description:
 * Created by bean on 2023/06/13.
 */
public class KlineQuotaResponse extends TigerResponse {
  @JSONField(name = "data")
  private List quotaItems;

  public List getQuotaItems() {
    return quotaItems;
  }

  public void setQuotaItems(List quotaItems) {
    this.quotaItems = quotaItems;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy