com.aliyun.dingtalkchengfeng_1_0.models.ListObjectiveByIdsRequest 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.dingtalkchengfeng_1_0.models;
import com.aliyun.tea.*;
public class ListObjectiveByIdsRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("objectiveIds")
public java.util.List objectiveIds;
public static ListObjectiveByIdsRequest build(java.util.Map map) throws Exception {
ListObjectiveByIdsRequest self = new ListObjectiveByIdsRequest();
return TeaModel.build(map, self);
}
public ListObjectiveByIdsRequest setObjectiveIds(java.util.List objectiveIds) {
this.objectiveIds = objectiveIds;
return this;
}
public java.util.List getObjectiveIds() {
return this.objectiveIds;
}
}