![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkagoal_1_0.models.AgoalObjectiveKeyActionListRequest 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 AgoalObjectiveKeyActionListRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 211042291978xxxx
*/
@NameInMap("dingUserId")
public String dingUserId;
/**
* example:
* 6444f5e9a4261c6e699dxxxx
*/
@NameInMap("keyResultId")
public String keyResultId;
/**
* This parameter is required.
*
* example:
* 6444f5e9a4261c6e699dxxxx
*/
@NameInMap("objectiveId")
public String objectiveId;
public static AgoalObjectiveKeyActionListRequest build(java.util.Map map) throws Exception {
AgoalObjectiveKeyActionListRequest self = new AgoalObjectiveKeyActionListRequest();
return TeaModel.build(map, self);
}
public AgoalObjectiveKeyActionListRequest setDingUserId(String dingUserId) {
this.dingUserId = dingUserId;
return this;
}
public String getDingUserId() {
return this.dingUserId;
}
public AgoalObjectiveKeyActionListRequest setKeyResultId(String keyResultId) {
this.keyResultId = keyResultId;
return this;
}
public String getKeyResultId() {
return this.keyResultId;
}
public AgoalObjectiveKeyActionListRequest setObjectiveId(String objectiveId) {
this.objectiveId = objectiveId;
return this;
}
public String getObjectiveId() {
return this.objectiveId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy