com.alipay.api.response.AlipayDataDataserviceAdConversionBatchqueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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.ConversionDetail;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.data.dataservice.ad.conversion.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:31:49
*/
public class AlipayDataDataserviceAdConversionBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4495484326681952311L;
/**
* 转化事件列表
*/
@ApiListField("list")
@ApiField("conversion_detail")
private List list;
/**
* 分页参数之页数,从1开始
*/
@ApiField("page_no")
private Long pageNo;
/**
* 分页参数之每页大小,最大1000
*/
@ApiField("page_size")
private Long pageSize;
/**
* 分页参数之总数据量
*/
@ApiField("total")
private Long total;
public void setList(List list) {
this.list = list;
}
public List getList( ) {
return this.list;
}
public void setPageNo(Long pageNo) {
this.pageNo = pageNo;
}
public Long getPageNo( ) {
return this.pageNo;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageSize( ) {
return this.pageSize;
}
public void setTotal(Long total) {
this.total = total;
}
public Long getTotal( ) {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy