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

com.aliyun.dingtalkwiki_2_0.models.ListNodesRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy