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

com.aliyun.dingtalkwiki_2_0.models.GetNodeRequest Maven / Gradle / Ivy

The 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 GetNodeRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

union_id

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

false

*/ @NameInMap("withPermissionRole") public Boolean withPermissionRole; /** * example: *

false

*/ @NameInMap("withStatisticalInfo") public Boolean withStatisticalInfo; public static GetNodeRequest build(java.util.Map map) throws Exception { GetNodeRequest self = new GetNodeRequest(); return TeaModel.build(map, self); } public GetNodeRequest setOperatorId(String operatorId) { this.operatorId = operatorId; return this; } public String getOperatorId() { return this.operatorId; } public GetNodeRequest setWithPermissionRole(Boolean withPermissionRole) { this.withPermissionRole = withPermissionRole; return this; } public Boolean getWithPermissionRole() { return this.withPermissionRole; } public GetNodeRequest setWithStatisticalInfo(Boolean withStatisticalInfo) { this.withStatisticalInfo = withStatisticalInfo; return this; } public Boolean getWithStatisticalInfo() { return this.withStatisticalInfo; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy