com.aliyun.sas20181203.models.GetRdTreeResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class GetRdTreeResponseBody extends TeaModel {
@NameInMap("Data")
public GetRdTreeResponseBodyData data;
/**
* example:
* 30CBF632-109F-596F-97F2-451C8B2A****
*/
@NameInMap("RequestId")
public String requestId;
public static GetRdTreeResponseBody build(java.util.Map map) throws Exception {
GetRdTreeResponseBody self = new GetRdTreeResponseBody();
return TeaModel.build(map, self);
}
public GetRdTreeResponseBody setData(GetRdTreeResponseBodyData data) {
this.data = data;
return this;
}
public GetRdTreeResponseBodyData getData() {
return this.data;
}
public GetRdTreeResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class GetRdTreeResponseBodyData extends TeaModel {
@NameInMap("Children")
public java.util.List> children;
/**
* example:
* fd-CGA73I****
*/
@NameInMap("FolderId")
public String folderId;
/**
* example:
* Root
*/
@NameInMap("FolderName")
public String folderName;
public static GetRdTreeResponseBodyData build(java.util.Map map) throws Exception {
GetRdTreeResponseBodyData self = new GetRdTreeResponseBodyData();
return TeaModel.build(map, self);
}
public GetRdTreeResponseBodyData setChildren(java.util.List> children) {
this.children = children;
return this;
}
public java.util.List> getChildren() {
return this.children;
}
public GetRdTreeResponseBodyData setFolderId(String folderId) {
this.folderId = folderId;
return this;
}
public String getFolderId() {
return this.folderId;
}
public GetRdTreeResponseBodyData setFolderName(String folderName) {
this.folderName = folderName;
return this;
}
public String getFolderName() {
return this.folderName;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy