com.alipay.api.domain.KbAdvertAdvSingleVoucherResponse 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.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 口碑广告系统推广详情(单张券)
*
* @author auto create
* @since 1.0, 2017-01-16 16:13:33
*/
public class KbAdvertAdvSingleVoucherResponse extends AlipayObject {
private static final long serialVersionUID = 1654851878158921789L;
/**
* 广告内容模型
*/
@ApiListField("adv_content_list")
@ApiField("kb_advert_adv_content_response")
private List advContentList;
/**
* 广告内容(广告内容请使用新的属性adv_content_list,此属性仍会保留)
*/
@ApiField("content")
private KbAdvertAdvContent content;
/**
* 券标的
*/
@ApiField("voucher")
private KbAdvertSubjectVoucherResponse voucher;
public List getAdvContentList() {
return this.advContentList;
}
public void setAdvContentList(List advContentList) {
this.advContentList = advContentList;
}
public KbAdvertAdvContent getContent() {
return this.content;
}
public void setContent(KbAdvertAdvContent content) {
this.content = content;
}
public KbAdvertSubjectVoucherResponse getVoucher() {
return this.voucher;
}
public void setVoucher(KbAdvertSubjectVoucherResponse voucher) {
this.voucher = voucher;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy