com.alipay.api.response.KoubeiAdvertCommissionChannelBatchqueryResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.KbAdvertChannelResponse;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.advert.commission.channel.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:34
*/
public class KoubeiAdvertCommissionChannelBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 1649989863412536136L;
/**
* 渠道信息
*/
@ApiField("data")
private KbAdvertChannelResponse data;
/**
* 页码
*/
@ApiField("page_index")
private String pageIndex;
/**
* 每页页数
*/
@ApiField("page_size")
private String pageSize;
/**
* 总页数
*/
@ApiField("total_count")
private String totalCount;
public void setData(KbAdvertChannelResponse data) {
this.data = data;
}
public KbAdvertChannelResponse getData( ) {
return this.data;
}
public void setPageIndex(String pageIndex) {
this.pageIndex = pageIndex;
}
public String getPageIndex( ) {
return this.pageIndex;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
}
public String getPageSize( ) {
return this.pageSize;
}
public void setTotalCount(String totalCount) {
this.totalCount = totalCount;
}
public String getTotalCount( ) {
return this.totalCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy