com.aliyun.dingtalkstorage_1_0.models.DeleteDentriesResponseBody 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.dingtalkstorage_1_0.models;
import com.aliyun.tea.*;
public class DeleteDentriesResponseBody extends TeaModel {
@NameInMap("resultItems")
public java.util.List resultItems;
public static DeleteDentriesResponseBody build(java.util.Map map) throws Exception {
DeleteDentriesResponseBody self = new DeleteDentriesResponseBody();
return TeaModel.build(map, self);
}
public DeleteDentriesResponseBody setResultItems(java.util.List resultItems) {
this.resultItems = resultItems;
return this;
}
public java.util.List getResultItems() {
return this.resultItems;
}
public static class DeleteDentriesResponseBodyResultItems extends TeaModel {
/**
* example:
* true
*/
@NameInMap("async")
public Boolean async;
/**
* example:
* dentry_id
*/
@NameInMap("dentryId")
public String dentryId;
/**
* example:
* permissionDenied
*/
@NameInMap("errorCode")
public String errorCode;
/**
* example:
* space_id
*/
@NameInMap("spaceId")
public String spaceId;
/**
* example:
* true
*/
@NameInMap("success")
public Boolean success;
/**
* example:
* task_id
*/
@NameInMap("taskId")
public String taskId;
public static DeleteDentriesResponseBodyResultItems build(java.util.Map map) throws Exception {
DeleteDentriesResponseBodyResultItems self = new DeleteDentriesResponseBodyResultItems();
return TeaModel.build(map, self);
}
public DeleteDentriesResponseBodyResultItems setAsync(Boolean async) {
this.async = async;
return this;
}
public Boolean getAsync() {
return this.async;
}
public DeleteDentriesResponseBodyResultItems setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public DeleteDentriesResponseBodyResultItems setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public DeleteDentriesResponseBodyResultItems setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public DeleteDentriesResponseBodyResultItems setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public DeleteDentriesResponseBodyResultItems setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}
}