All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkchengfeng_1_0.models.CfJobLevelResp Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy