com.aliyun.dingtalkstorage_1_0.models.MoveDentriesResponseBody 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 MoveDentriesResponseBody extends TeaModel {
@NameInMap("resultItems")
public java.util.List resultItems;
public static MoveDentriesResponseBody build(java.util.Map map) throws Exception {
MoveDentriesResponseBody self = new MoveDentriesResponseBody();
return TeaModel.build(map, self);
}
public MoveDentriesResponseBody setResultItems(java.util.List resultItems) {
this.resultItems = resultItems;
return this;
}
public java.util.List getResultItems() {
return this.resultItems;
}
public static class MoveDentriesResponseBodyResultItems 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:
* target_dentry_id
*/
@NameInMap("targetDentryId")
public String targetDentryId;
/**
* example:
* target_space_id
*/
@NameInMap("targetSpaceId")
public String targetSpaceId;
/**
* example:
* task_id
*/
@NameInMap("taskId")
public String taskId;
public static MoveDentriesResponseBodyResultItems build(java.util.Map map) throws Exception {
MoveDentriesResponseBodyResultItems self = new MoveDentriesResponseBodyResultItems();
return TeaModel.build(map, self);
}
public MoveDentriesResponseBodyResultItems setAsync(Boolean async) {
this.async = async;
return this;
}
public Boolean getAsync() {
return this.async;
}
public MoveDentriesResponseBodyResultItems setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public MoveDentriesResponseBodyResultItems setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public MoveDentriesResponseBodyResultItems setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public MoveDentriesResponseBodyResultItems setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public MoveDentriesResponseBodyResultItems setTargetDentryId(String targetDentryId) {
this.targetDentryId = targetDentryId;
return this;
}
public String getTargetDentryId() {
return this.targetDentryId;
}
public MoveDentriesResponseBodyResultItems setTargetSpaceId(String targetSpaceId) {
this.targetSpaceId = targetSpaceId;
return this;
}
public String getTargetSpaceId() {
return this.targetSpaceId;
}
public MoveDentriesResponseBodyResultItems setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}
}