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