![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkproject_1_0.models.SearchProjectCustomfieldRequest 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 SearchProjectCustomfieldRequest extends TeaModel {
/**
* example:
* 60a2187eb72xxxxxxx,60a2187eb72xxxxxxx
*/
@NameInMap("customFieldIds")
public String customFieldIds;
/**
* example:
* 60a2187eb72xxxxxxx,60a2187eb72xxxxxxx
*/
@NameInMap("instanceIds")
public String instanceIds;
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* f279e812xxxxxx
*/
@NameInMap("nextToken")
public String nextToken;
/**
* example:
* 自定义字段名1
*/
@NameInMap("query")
public String query;
/**
* example:
* 60a2187eb72xxxxxxx
*/
@NameInMap("scenarioFieldConfigId")
public String scenarioFieldConfigId;
public static SearchProjectCustomfieldRequest build(java.util.Map map) throws Exception {
SearchProjectCustomfieldRequest self = new SearchProjectCustomfieldRequest();
return TeaModel.build(map, self);
}
public SearchProjectCustomfieldRequest setCustomFieldIds(String customFieldIds) {
this.customFieldIds = customFieldIds;
return this;
}
public String getCustomFieldIds() {
return this.customFieldIds;
}
public SearchProjectCustomfieldRequest setInstanceIds(String instanceIds) {
this.instanceIds = instanceIds;
return this;
}
public String getInstanceIds() {
return this.instanceIds;
}
public SearchProjectCustomfieldRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public SearchProjectCustomfieldRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public SearchProjectCustomfieldRequest setQuery(String query) {
this.query = query;
return this;
}
public String getQuery() {
return this.query;
}
public SearchProjectCustomfieldRequest setScenarioFieldConfigId(String scenarioFieldConfigId) {
this.scenarioFieldConfigId = scenarioFieldConfigId;
return this;
}
public String getScenarioFieldConfigId() {
return this.scenarioFieldConfigId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy