com.alipay.api.response.AlipayMarketingCampaignCertQueryResponse 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.KnCertSendOrderDetail;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.marketing.campaign.cert.query response.
*
* @author auto create
* @since 1.0, 2024-03-01 16:27:40
*/
public class AlipayMarketingCampaignCertQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 8116749416768859641L;
/**
* 用户还有效的凭证详细列表
*/
@ApiListField("subcert_list")
@ApiField("kn_cert_send_order_detail")
private List subcertList;
/**
* 总的真正还可用的剩余有效点数
*/
@ApiField("total_remain_point")
private Long totalRemainPoint;
public void setSubcertList(List subcertList) {
this.subcertList = subcertList;
}
public List getSubcertList( ) {
return this.subcertList;
}
public void setTotalRemainPoint(Long totalRemainPoint) {
this.totalRemainPoint = totalRemainPoint;
}
public Long getTotalRemainPoint( ) {
return this.totalRemainPoint;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy