
com.alipay.api.domain.KbAdvertSubjectResponse 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
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 口碑广告系统标的
*
* @author auto create
* @since 1.0, 2017-01-17 10:33:12
*/
public class KbAdvertSubjectResponse extends AlipayObject {
private static final long serialVersionUID = 4714656143554656742L;
/**
* 分佣规则
*/
@ApiField("commission_clause")
private KbAdvertCommissionClauseResponse commissionClause;
/**
* 标的类型
voucher-券
*/
@ApiField("type")
private String type;
/**
* 券标的
只有type=voucher才会有值
*/
@ApiField("voucher")
private KbAdvertSubjectVoucherResponse voucher;
public KbAdvertCommissionClauseResponse getCommissionClause() {
return this.commissionClause;
}
public void setCommissionClause(KbAdvertCommissionClauseResponse commissionClause) {
this.commissionClause = commissionClause;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public KbAdvertSubjectVoucherResponse getVoucher() {
return this.voucher;
}
public void setVoucher(KbAdvertSubjectVoucherResponse voucher) {
this.voucher = voucher;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy