com.alipay.api.response.AlipayMarketingVoucherListQueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The 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.VoucherLiteInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.marketing.voucher.list.query response.
*
* @author auto create
* @since 1.0, 2017-06-19 11:28:18
*/
public class AlipayMarketingVoucherListQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 5595531584787694661L;
/**
* 券列表,一定不为null,但是size可以为0
*/
@ApiListField("vouchers")
@ApiField("voucher_lite_info")
private List vouchers;
public void setVouchers(List vouchers) {
this.vouchers = vouchers;
}
public List getVouchers( ) {
return this.vouchers;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy