com.alipay.api.response.AlipayAccountExrateRatequeryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.ExRefRateInfoVO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.account.exrate.ratequery response.
*
* @author auto create
* @since 1.0, 2017-03-27 18:11:27
*/
public class AlipayAccountExrateRatequeryResponse extends AlipayResponse {
private static final long serialVersionUID = 5729929162438456554L;
/**
* 查询到的汇率对象列表,如果没有查询到则返回空列表
*/
@ApiListField("rate_query_response_list")
@ApiField("ex_ref_rate_info_v_o")
private List rateQueryResponseList;
public void setRateQueryResponseList(List rateQueryResponseList) {
this.rateQueryResponseList = rateQueryResponseList;
}
public List getRateQueryResponseList( ) {
return this.rateQueryResponseList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy