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

com.aliyun.dingtalkproject_1_0.models.SearchAllTasksByTqlRequest 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 SearchAllTasksByTqlRequest extends TeaModel {
    /**
     * example:
     * 

50

*/ @NameInMap("maxResults") public Integer maxResults; /** * example: *

DXF1ZXJ5QW5kRmV0Y2gBAAAAAAKC9p4WVjNKbUstaldRX3lOOHNBbElzcjA5Zw==

*/ @NameInMap("nextToken") public String nextToken; /** * example: *

isDone = false

*/ @NameInMap("tql") public String tql; public static SearchAllTasksByTqlRequest build(java.util.Map map) throws Exception { SearchAllTasksByTqlRequest self = new SearchAllTasksByTqlRequest(); return TeaModel.build(map, self); } public SearchAllTasksByTqlRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public SearchAllTasksByTqlRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public SearchAllTasksByTqlRequest setTql(String tql) { this.tql = tql; return this; } public String getTql() { return this.tql; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy