com.alipay.api.domain.OpenPromoBudget Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 开放活动-预算
*
* @author auto create
* @since 1.0, 2016-10-26 17:43:38
*/
public class OpenPromoBudget extends AlipayObject {
private static final long serialVersionUID = 1257997672948977965L;
/**
* 预算数量,支持1~999999999之间。默认为999999999
*/
@ApiField("budget_total")
private String budgetTotal;
/**
* 预算类型,现在支持CAMP_BUDGET_AMOUNT:表示数量预算
*/
@ApiField("budget_type")
private String budgetType;
public String getBudgetTotal() {
return this.budgetTotal;
}
public void setBudgetTotal(String budgetTotal) {
this.budgetTotal = budgetTotal;
}
public String getBudgetType() {
return this.budgetType;
}
public void setBudgetType(String budgetType) {
this.budgetType = budgetType;
}
}