com.alipay.api.response.AnttechBlockchainDefinDataserviceWeatherinfosQueryResponse Maven / Gradle / Ivy
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.WeatherInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: anttech.blockchain.defin.dataservice.weatherinfos.query response.
*
* @author auto create
* @since 1.0, 2024-03-01 16:25:20
*/
public class AnttechBlockchainDefinDataserviceWeatherinfosQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 6641882367688792316L;
/**
* 气象信息
*/
@ApiListField("weather_infos")
@ApiField("weather_info")
private List weatherInfos;
public void setWeatherInfos(List weatherInfos) {
this.weatherInfos = weatherInfos;
}
public List getWeatherInfos( ) {
return this.weatherInfos;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy