
com.tigerbrokers.stock.openapi.client.https.response.fund.FundContractsResponse Maven / Gradle / Ivy
package com.tigerbrokers.stock.openapi.client.https.response.fund;
import com.alibaba.fastjson.annotation.JSONField;
import com.tigerbrokers.stock.openapi.client.https.domain.fund.item.FundContractItem;
import com.tigerbrokers.stock.openapi.client.https.response.TigerResponse;
import java.util.List;
/**
* Description:
* Created by lijiawen on 2018/12/25.
*/
public class FundContractsResponse extends TigerResponse {
@JSONField(name = "data")
private List fundContractItems;
public List getFundContractItems() {
return fundContractItems;
}
public void setFundContractItems(
List fundContractItems) {
this.fundContractItems = fundContractItems;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy