com.aliyun.dingtalkwiki_2_0.models.GetNodesRequest 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 GetNodesRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("nodeIds")
public java.util.List nodeIds;
@NameInMap("option")
public GetNodesRequestOption option;
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("operatorId")
public String operatorId;
public static GetNodesRequest build(java.util.Map map) throws Exception {
GetNodesRequest self = new GetNodesRequest();
return TeaModel.build(map, self);
}
public GetNodesRequest setNodeIds(java.util.List nodeIds) {
this.nodeIds = nodeIds;
return this;
}
public java.util.List getNodeIds() {
return this.nodeIds;
}
public GetNodesRequest setOption(GetNodesRequestOption option) {
this.option = option;
return this;
}
public GetNodesRequestOption getOption() {
return this.option;
}
public GetNodesRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public static class GetNodesRequestOption extends TeaModel {
/**
* example:
* false
*/
@NameInMap("withPermissionRole")
public Boolean withPermissionRole;
/**
* example:
* false
*/
@NameInMap("withStatisticalInfo")
public Boolean withStatisticalInfo;
public static GetNodesRequestOption build(java.util.Map map) throws Exception {
GetNodesRequestOption self = new GetNodesRequestOption();
return TeaModel.build(map, self);
}
public GetNodesRequestOption setWithPermissionRole(Boolean withPermissionRole) {
this.withPermissionRole = withPermissionRole;
return this;
}
public Boolean getWithPermissionRole() {
return this.withPermissionRole;
}
public GetNodesRequestOption setWithStatisticalInfo(Boolean withStatisticalInfo) {
this.withStatisticalInfo = withStatisticalInfo;
return this;
}
public Boolean getWithStatisticalInfo() {
return this.withStatisticalInfo;
}
}
}