com.aliyun.dingtalkproject_1_0.models.SearchTaskFlowRequest 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 SearchTaskFlowRequest 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("taskflowIds")
public String taskflowIds;
public static SearchTaskFlowRequest build(java.util.Map map) throws Exception {
SearchTaskFlowRequest self = new SearchTaskFlowRequest();
return TeaModel.build(map, self);
}
public SearchTaskFlowRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public SearchTaskFlowRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public SearchTaskFlowRequest setQuery(String query) {
this.query = query;
return this;
}
public String getQuery() {
return this.query;
}
public SearchTaskFlowRequest setTaskflowIds(String taskflowIds) {
this.taskflowIds = taskflowIds;
return this;
}
public String getTaskflowIds() {
return this.taskflowIds;
}
}