![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkstorage_1_0.models.RestoreRecycleItemsResponseBody 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 RestoreRecycleItemsResponseBody extends TeaModel {
@NameInMap("resultItems")
public java.util.List resultItems;
public static RestoreRecycleItemsResponseBody build(java.util.Map map) throws Exception {
RestoreRecycleItemsResponseBody self = new RestoreRecycleItemsResponseBody();
return TeaModel.build(map, self);
}
public RestoreRecycleItemsResponseBody setResultItems(java.util.List resultItems) {
this.resultItems = resultItems;
return this;
}
public java.util.List getResultItems() {
return this.resultItems;
}
public static class RestoreRecycleItemsResponseBodyResultItems 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:
* recyclebin_id
*/
@NameInMap("recycleBinId")
public String recycleBinId;
/**
* example:
* recycle_item_id
*/
@NameInMap("recycleItemId")
public String recycleItemId;
/**
* 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 RestoreRecycleItemsResponseBodyResultItems build(java.util.Map map) throws Exception {
RestoreRecycleItemsResponseBodyResultItems self = new RestoreRecycleItemsResponseBodyResultItems();
return TeaModel.build(map, self);
}
public RestoreRecycleItemsResponseBodyResultItems setAsync(Boolean async) {
this.async = async;
return this;
}
public Boolean getAsync() {
return this.async;
}
public RestoreRecycleItemsResponseBodyResultItems setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public RestoreRecycleItemsResponseBodyResultItems setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public RestoreRecycleItemsResponseBodyResultItems setRecycleBinId(String recycleBinId) {
this.recycleBinId = recycleBinId;
return this;
}
public String getRecycleBinId() {
return this.recycleBinId;
}
public RestoreRecycleItemsResponseBodyResultItems setRecycleItemId(String recycleItemId) {
this.recycleItemId = recycleItemId;
return this;
}
public String getRecycleItemId() {
return this.recycleItemId;
}
public RestoreRecycleItemsResponseBodyResultItems setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public RestoreRecycleItemsResponseBodyResultItems setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public RestoreRecycleItemsResponseBodyResultItems setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy