com.alipay.api.domain.AlarmTimeConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
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-04-11 09:44:18
*/
public class AlarmTimeConfig extends AlipayObject {
private static final long serialVersionUID = 5227447775287986449L;
/**
* 生效开始时间(格式:HH:mm:dd)
*/
@ApiField("from")
private String from;
/**
* 时间类型
- BY_DAY
- BY_WEEK
*/
@ApiField("time_type")
private String timeType;
/**
* 生效结束时间(格式:HH:mm:dd)
*/
@ApiField("to")
private String to;
/**
* 每周几触发
*/
@ApiListField("weeks")
@ApiField("number")
private List weeks;
public String getFrom() {
return this.from;
}
public void setFrom(String from) {
this.from = from;
}
public String getTimeType() {
return this.timeType;
}
public void setTimeType(String timeType) {
this.timeType = timeType;
}
public String getTo() {
return this.to;
}
public void setTo(String to) {
this.to = to;
}
public List getWeeks() {
return this.weeks;
}
public void setWeeks(List weeks) {
this.weeks = weeks;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy