com.aliyun.dingtalkchengfeng_1_0.models.CfJobLevelResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class CfJobLevelResp extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("level")
public Long level;
/**
* This parameter is required.
*
* example:
* P1
*/
@NameInMap("name")
public String name;
/**
* This parameter is required.
*
* example:
* 1639065600000
*/
@NameInMap("startDate")
public String startDate;
/**
* This parameter is required.
*
* example:
* 1652198400000
*/
@NameInMap("stopDate")
public String stopDate;
public static CfJobLevelResp build(java.util.Map map) throws Exception {
CfJobLevelResp self = new CfJobLevelResp();
return TeaModel.build(map, self);
}
public CfJobLevelResp setLevel(Long level) {
this.level = level;
return this;
}
public Long getLevel() {
return this.level;
}
public CfJobLevelResp setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CfJobLevelResp setStartDate(String startDate) {
this.startDate = startDate;
return this;
}
public String getStartDate() {
return this.startDate;
}
public CfJobLevelResp setStopDate(String stopDate) {
this.stopDate = stopDate;
return this;
}
public String getStopDate() {
return this.stopDate;
}
}