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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy