![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkteam_sphere_1_0.models.SearchAllTasksByTqlRequest 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.dingtalkteam_sphere_1_0.models;
import com.aliyun.tea.*;
public class SearchAllTasksByTqlRequest extends TeaModel {
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
@NameInMap("tql")
public String tql;
/**
* This parameter is required.
*
* example:
* 0517xxx
*/
@NameInMap("userId")
public String userId;
public static SearchAllTasksByTqlRequest build(java.util.Map map) throws Exception {
SearchAllTasksByTqlRequest self = new SearchAllTasksByTqlRequest();
return TeaModel.build(map, self);
}
public SearchAllTasksByTqlRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public SearchAllTasksByTqlRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public SearchAllTasksByTqlRequest setTql(String tql) {
this.tql = tql;
return this;
}
public String getTql() {
return this.tql;
}
public SearchAllTasksByTqlRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy