
com.alipay.api.response.AlipayCommerceIotAdvertiserDeviceQueryResponse 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.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.iot.advertiser.device.query response.
*
* @author auto create
* @since 1.0, 2023-05-31 03:04:14
*/
public class AlipayCommerceIotAdvertiserDeviceQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4462155981128416863L;
/**
* 获取商户下设备列表
*/
@ApiListField("device_sn_list")
@ApiField("string")
private List deviceSnList;
/**
* 10
*/
@ApiField("total")
private Long total;
public void setDeviceSnList(List deviceSnList) {
this.deviceSnList = deviceSnList;
}
public List getDeviceSnList( ) {
return this.deviceSnList;
}
public void setTotal(Long total) {
this.total = total;
}
public Long getTotal( ) {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy