
com.tigerbrokers.stock.openapi.client.https.response.financial.FinancialExchangeRateResponse Maven / Gradle / Ivy
package com.tigerbrokers.stock.openapi.client.https.response.financial;
import com.alibaba.fastjson.annotation.JSONField;
import com.tigerbrokers.stock.openapi.client.https.domain.financial.item.FinancialExchangeRateItem;
import com.tigerbrokers.stock.openapi.client.https.response.TigerResponse;
import java.util.List;
/**
* Description:
* Created by bean on 2023/08/10.
*/
public class FinancialExchangeRateResponse extends TigerResponse {
@JSONField(name = "data")
private List financialExchangeRateItems;
public List getFinancialExchangeRateItems() {
return financialExchangeRateItems;
}
public void setFinancialExchangeRateItems(
List financialExchangeRateItems) {
this.financialExchangeRateItems = financialExchangeRateItems;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy