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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkproject_1_0.models;

import com.aliyun.tea.*;

public class QueryProjectRequest extends TeaModel {
    /**
     * example:
     * 

10

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

测试项目

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

f279e812xxxxxx

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

60a2187eb72xxxxxxx

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

60a2187eb72xxxxxxx

*/ @NameInMap("sourceId") public String sourceId; public static QueryProjectRequest build(java.util.Map map) throws Exception { QueryProjectRequest self = new QueryProjectRequest(); return TeaModel.build(map, self); } public QueryProjectRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryProjectRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryProjectRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryProjectRequest setProjectIds(String projectIds) { this.projectIds = projectIds; return this; } public String getProjectIds() { return this.projectIds; } public QueryProjectRequest setSourceId(String sourceId) { this.sourceId = sourceId; return this; } public String getSourceId() { return this.sourceId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy