![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkproject_1_0.models.SearchTaskflowStatusRequest 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 SearchTaskflowStatusRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* f279e812xxxxxx
*/
@NameInMap("nextToken")
public String nextToken;
/**
* example:
* 未开始
*/
@NameInMap("query")
public String query;
/**
* example:
* 60a2187eb72xxxxxxx,60a2187eb72xxxxxxx
*/
@NameInMap("tfIds")
public String tfIds;
/**
* example:
* 60a2187eb72xxxxxxx,60a2187eb72xxxxxxx
*/
@NameInMap("tfsIds")
public String tfsIds;
public static SearchTaskflowStatusRequest build(java.util.Map map) throws Exception {
SearchTaskflowStatusRequest self = new SearchTaskflowStatusRequest();
return TeaModel.build(map, self);
}
public SearchTaskflowStatusRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public SearchTaskflowStatusRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public SearchTaskflowStatusRequest setQuery(String query) {
this.query = query;
return this;
}
public String getQuery() {
return this.query;
}
public SearchTaskflowStatusRequest setTfIds(String tfIds) {
this.tfIds = tfIds;
return this;
}
public String getTfIds() {
return this.tfIds;
}
public SearchTaskflowStatusRequest setTfsIds(String tfsIds) {
this.tfsIds = tfsIds;
return this;
}
public String getTfsIds() {
return this.tfsIds;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy