
com.alipay.api.response.AlipayOpenPublicAdvertBatchqueryResponse 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.Advert;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.open.public.advert.batchquery response.
*
* @author auto create
* @since 1.0, 2023-05-30 23:27:41
*/
public class AlipayOpenPublicAdvertBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4291272344423257426L;
/**
* 广告位列表 。目前只有一个广告位。
*/
@ApiListField("advert_list")
@ApiField("advert")
private List advertList;
/**
* 广告组数量
*/
@ApiField("count")
private Long count;
public void setAdvertList(List advertList) {
this.advertList = advertList;
}
public List getAdvertList( ) {
return this.advertList;
}
public void setCount(Long count) {
this.count = count;
}
public Long getCount( ) {
return this.count;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy