com.aliyun.dingtalkconnector_1_0.models.SearchConnectorsRequest 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.dingtalkconnector_1_0.models;
import com.aliyun.tea.*;
public class SearchConnectorsRequest extends TeaModel {
/**
* example:
* 20
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* 0
*/
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* official
*/
@NameInMap("type")
public String type;
public static SearchConnectorsRequest build(java.util.Map map) throws Exception {
SearchConnectorsRequest self = new SearchConnectorsRequest();
return TeaModel.build(map, self);
}
public SearchConnectorsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public SearchConnectorsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public SearchConnectorsRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}