![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkokr_1_0.models.OkrObjectivesBatchRequest 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.dingtalkokr_1_0.models;
import com.aliyun.tea.*;
public class OkrObjectivesBatchRequest extends TeaModel {
/**
* example:
* dingOKR
*/
@NameInMap("goodsCode")
public String goodsCode;
@NameInMap("objectiveIds")
public java.util.List objectiveIds;
public static OkrObjectivesBatchRequest build(java.util.Map map) throws Exception {
OkrObjectivesBatchRequest self = new OkrObjectivesBatchRequest();
return TeaModel.build(map, self);
}
public OkrObjectivesBatchRequest setGoodsCode(String goodsCode) {
this.goodsCode = goodsCode;
return this;
}
public String getGoodsCode() {
return this.goodsCode;
}
public OkrObjectivesBatchRequest setObjectiveIds(java.util.List objectiveIds) {
this.objectiveIds = objectiveIds;
return this;
}
public java.util.List getObjectiveIds() {
return this.objectiveIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy