com.alipay.api.domain.DtbankActivityAlertConfigInfo Maven / Gradle / Ivy
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, 2024-11-15 16:04:20
*/
public class DtbankActivityAlertConfigInfo extends AlipayObject {
private static final long serialVersionUID = 3383787287962291662L;
/**
* 总剩余预算预警值,单位:分
*/
@ApiField("alert_value")
private Long alertValue;
/**
* 接口通知应用APPID
*/
@ApiListField("app_id_list")
@ApiField("string")
private List appIdList;
/**
* 预警方式:MESSAGE:短信;INTERFAC:接口
*/
@ApiField("budget_alert_notify_type")
private String budgetAlertNotifyType;
/**
* 短信通知联系人列表
*/
@ApiListField("phone_no_list")
@ApiField("string")
private List phoneNoList;
public Long getAlertValue() {
return this.alertValue;
}
public void setAlertValue(Long alertValue) {
this.alertValue = alertValue;
}
public List getAppIdList() {
return this.appIdList;
}
public void setAppIdList(List appIdList) {
this.appIdList = appIdList;
}
public String getBudgetAlertNotifyType() {
return this.budgetAlertNotifyType;
}
public void setBudgetAlertNotifyType(String budgetAlertNotifyType) {
this.budgetAlertNotifyType = budgetAlertNotifyType;
}
public List getPhoneNoList() {
return this.phoneNoList;
}
public void setPhoneNoList(List phoneNoList) {
this.phoneNoList = phoneNoList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy