All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayMarketingCampaignSubcertQueryResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
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.SubCertDetail;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.marketing.campaign.subcert.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-09-11 13:34:23
 */
public class AlipayMarketingCampaignSubcertQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 8543881636736578178L;

	/** 
	 * 子凭证详细信息
	 */
	@ApiListField("subcert_list")
	@ApiField("sub_cert_detail")
	private List subcertList;

	/** 
	 * 有效子凭证条数
	 */
	@ApiField("total_num")
	private String totalNum;

	public void setSubcertList(List subcertList) {
		this.subcertList = subcertList;
	}
	public List getSubcertList( ) {
		return this.subcertList;
	}

	public void setTotalNum(String totalNum) {
		this.totalNum = totalNum;
	}
	public String getTotalNum( ) {
		return this.totalNum;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy