![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkagoal_1_0.models.OpenOrgObjectiveRuleDTO 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.dingtalkagoal_1_0.models;
import com.aliyun.tea.*;
public class OpenOrgObjectiveRuleDTO extends TeaModel {
/**
* This parameter is required.
*
* example:
* 6444f5e9a4261c6e699dxxxx
*/
@NameInMap("objectiveRuleId")
public String objectiveRuleId;
/**
* This parameter is required.
*
* example:
* 测试规则
*/
@NameInMap("objectiveRuleName")
public String objectiveRuleName;
public static OpenOrgObjectiveRuleDTO build(java.util.Map map) throws Exception {
OpenOrgObjectiveRuleDTO self = new OpenOrgObjectiveRuleDTO();
return TeaModel.build(map, self);
}
public OpenOrgObjectiveRuleDTO setObjectiveRuleId(String objectiveRuleId) {
this.objectiveRuleId = objectiveRuleId;
return this;
}
public String getObjectiveRuleId() {
return this.objectiveRuleId;
}
public OpenOrgObjectiveRuleDTO setObjectiveRuleName(String objectiveRuleName) {
this.objectiveRuleName = objectiveRuleName;
return this;
}
public String getObjectiveRuleName() {
return this.objectiveRuleName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy