com.aliyun.dingtalkwiki_2_0.models.ListNodesRequest 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.dingtalkwiki_2_0.models;
import com.aliyun.tea.*;
public class ListNodesRequest extends TeaModel {
/**
* example:
* 30
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* next_token
*/
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("operatorId")
public String operatorId;
/**
* This parameter is required.
*
* example:
* parent_node_id
*/
@NameInMap("parentNodeId")
public String parentNodeId;
/**
* example:
* false
*/
@NameInMap("withPermissionRole")
public Boolean withPermissionRole;
public static ListNodesRequest build(java.util.Map map) throws Exception {
ListNodesRequest self = new ListNodesRequest();
return TeaModel.build(map, self);
}
public ListNodesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListNodesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListNodesRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public ListNodesRequest setParentNodeId(String parentNodeId) {
this.parentNodeId = parentNodeId;
return this;
}
public String getParentNodeId() {
return this.parentNodeId;
}
public ListNodesRequest setWithPermissionRole(Boolean withPermissionRole) {
this.withPermissionRole = withPermissionRole;
return this;
}
public Boolean getWithPermissionRole() {
return this.withPermissionRole;
}
}