com.aliyun.dingtalkproject_1_0.models.SearchTaskListRequest 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 SearchTaskListRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* f279e812xxxxxx
*/
@NameInMap("nextToken")
public String nextToken;
/**
* example:
* 自定义分组1
*/
@NameInMap("query")
public String query;
/**
* example:
* 60a2187eb72xxxxxxx,60a2187eb72xxxxxxx
*/
@NameInMap("taskListIds")
public String taskListIds;
public static SearchTaskListRequest build(java.util.Map map) throws Exception {
SearchTaskListRequest self = new SearchTaskListRequest();
return TeaModel.build(map, self);
}
public SearchTaskListRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public SearchTaskListRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public SearchTaskListRequest setQuery(String query) {
this.query = query;
return this;
}
public String getQuery() {
return this.query;
}
public SearchTaskListRequest setTaskListIds(String taskListIds) {
this.taskListIds = taskListIds;
return this;
}
public String getTaskListIds() {
return this.taskListIds;
}
}