
com.aliyun.dingtalkproject_1_0.models.QueryTaskOfProjectRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkproject_1_0.models;
import com.aliyun.tea.*;
public class QueryTaskOfProjectRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* f279e812-e431-428d-846d-cxxxxxx
*/
@NameInMap("nextToken")
public String nextToken;
/**
* example:
* involveMembers NOT IN ["0612xx"] AND executorId="057xxx" AND content~标题2
*/
@NameInMap("query")
public String query;
public static QueryTaskOfProjectRequest build(java.util.Map map) throws Exception {
QueryTaskOfProjectRequest self = new QueryTaskOfProjectRequest();
return TeaModel.build(map, self);
}
public QueryTaskOfProjectRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryTaskOfProjectRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public QueryTaskOfProjectRequest setQuery(String query) {
this.query = query;
return this;
}
public String getQuery() {
return this.query;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy