com.aliyun.dingtalkproject_1_0.models.SearchUserTaskRequest 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 SearchUserTaskRequest extends TeaModel {
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*/
@NameInMap("roleTypes")
public String roleTypes;
@NameInMap("tql")
public String tql;
public static SearchUserTaskRequest build(java.util.Map map) throws Exception {
SearchUserTaskRequest self = new SearchUserTaskRequest();
return TeaModel.build(map, self);
}
public SearchUserTaskRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public SearchUserTaskRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public SearchUserTaskRequest setRoleTypes(String roleTypes) {
this.roleTypes = roleTypes;
return this;
}
public String getRoleTypes() {
return this.roleTypes;
}
public SearchUserTaskRequest setTql(String tql) {
this.tql = tql;
return this;
}
public String getTql() {
return this.tql;
}
}