com.aliyun.dingtalkedu_1_0.models.GetTaskListResponseBody 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.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class GetTaskListResponseBody extends TeaModel {
/**
* example:
* 2
*/
@NameInMap("count")
public Long count;
@NameInMap("taskList")
public java.util.List taskList;
public static GetTaskListResponseBody build(java.util.Map map) throws Exception {
GetTaskListResponseBody self = new GetTaskListResponseBody();
return TeaModel.build(map, self);
}
public GetTaskListResponseBody setCount(Long count) {
this.count = count;
return this;
}
public Long getCount() {
return this.count;
}
public GetTaskListResponseBody setTaskList(java.util.List taskList) {
this.taskList = taskList;
return this;
}
public java.util.List getTaskList() {
return this.taskList;
}
public static class GetTaskListResponseBodyTaskList extends TeaModel {
/**
* example:
* 2023希望校区初中
*/
@NameInMap("name")
public String name;
/**
* example:
* 4240028
*/
@NameInMap("taskId")
public Long taskId;
/**
* example:
* 2023
*/
@NameInMap("taskYear")
public Long taskYear;
public static GetTaskListResponseBodyTaskList build(java.util.Map map) throws Exception {
GetTaskListResponseBodyTaskList self = new GetTaskListResponseBodyTaskList();
return TeaModel.build(map, self);
}
public GetTaskListResponseBodyTaskList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetTaskListResponseBodyTaskList setTaskId(Long taskId) {
this.taskId = taskId;
return this;
}
public Long getTaskId() {
return this.taskId;
}
public GetTaskListResponseBodyTaskList setTaskYear(Long taskYear) {
this.taskYear = taskYear;
return this;
}
public Long getTaskYear() {
return this.taskYear;
}
}
}