com.aliyun.dingtalkagoal_1_0.models.AgoalObjectiveRulePeriodListRequest 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 AgoalObjectiveRulePeriodListRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 6444f5e9a4261c6e699dxxxx
*/
@NameInMap("objectiveRuleId")
public String objectiveRuleId;
public static AgoalObjectiveRulePeriodListRequest build(java.util.Map map) throws Exception {
AgoalObjectiveRulePeriodListRequest self = new AgoalObjectiveRulePeriodListRequest();
return TeaModel.build(map, self);
}
public AgoalObjectiveRulePeriodListRequest setObjectiveRuleId(String objectiveRuleId) {
this.objectiveRuleId = objectiveRuleId;
return this;
}
public String getObjectiveRuleId() {
return this.objectiveRuleId;
}
}