com.aliyun.dingtalkproject_1_0.models.GetTaskByIdsRequest 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.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class GetTaskByIdsRequest extends TeaModel {
/**
* example:
* 60a2187eb72xxxxxxx
*/
@NameInMap("parentTaskId")
public String parentTaskId;
/**
* example:
* 60a2187eb72xxxxxxx
*/
@NameInMap("taskId")
public String taskId;
public static GetTaskByIdsRequest build(java.util.Map map) throws Exception {
GetTaskByIdsRequest self = new GetTaskByIdsRequest();
return TeaModel.build(map, self);
}
public GetTaskByIdsRequest setParentTaskId(String parentTaskId) {
this.parentTaskId = parentTaskId;
return this;
}
public String getParentTaskId() {
return this.parentTaskId;
}
public GetTaskByIdsRequest setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}