All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkstorage_1_0.models.MoveDentriesResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy