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