All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkproject_1_0.models.SearchTaskFlowRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy