com.aliyun.dingtalkindustry_1_0.models.SubmitTaskResponseBody 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class SubmitTaskResponseBody extends TeaModel {
@NameInMap("tasks")
public java.util.List tasks;
public static SubmitTaskResponseBody build(java.util.Map map) throws Exception {
SubmitTaskResponseBody self = new SubmitTaskResponseBody();
return TeaModel.build(map, self);
}
public SubmitTaskResponseBody setTasks(java.util.List tasks) {
this.tasks = tasks;
return this;
}
public java.util.List getTasks() {
return this.tasks;
}
public static class SubmitTaskResponseBodyTasks extends TeaModel {
/**
* example:
* 1001
*/
@NameInMap("id")
public Long id;
/**
* example:
* 8ef16170b6e24d8fb77b832d7603b835
*/
@NameInMap("taskId")
public String taskId;
public static SubmitTaskResponseBodyTasks build(java.util.Map map) throws Exception {
SubmitTaskResponseBodyTasks self = new SubmitTaskResponseBodyTasks();
return TeaModel.build(map, self);
}
public SubmitTaskResponseBodyTasks setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public SubmitTaskResponseBodyTasks setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}
}