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

com.aliyun.dingtalkresident_1_0.models.DeleteSpaceResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.50
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkresident_1_0.models;

import com.aliyun.tea.*;

public class DeleteSpaceResponseBody extends TeaModel {
    // 失败列表
    @NameInMap("delFailedDept")
    public java.util.List delFailedDept;

    // 删除成功数量
    @NameInMap("delSuccessCount")
    public Boolean delSuccessCount;

    public static DeleteSpaceResponseBody build(java.util.Map map) throws Exception {
        DeleteSpaceResponseBody self = new DeleteSpaceResponseBody();
        return TeaModel.build(map, self);
    }

    public DeleteSpaceResponseBody setDelFailedDept(java.util.List delFailedDept) {
        this.delFailedDept = delFailedDept;
        return this;
    }
    public java.util.List getDelFailedDept() {
        return this.delFailedDept;
    }

    public DeleteSpaceResponseBody setDelSuccessCount(Boolean delSuccessCount) {
        this.delSuccessCount = delSuccessCount;
        return this;
    }
    public Boolean getDelSuccessCount() {
        return this.delSuccessCount;
    }

    public static class DeleteSpaceResponseBodyDelFailedDept extends TeaModel {
        // 部门id
        @NameInMap("deptId")
        public Long deptId;

        public static DeleteSpaceResponseBodyDelFailedDept build(java.util.Map map) throws Exception {
            DeleteSpaceResponseBodyDelFailedDept self = new DeleteSpaceResponseBodyDelFailedDept();
            return TeaModel.build(map, self);
        }

        public DeleteSpaceResponseBodyDelFailedDept setDeptId(Long deptId) {
            this.deptId = deptId;
            return this;
        }
        public Long getDeptId() {
            return this.deptId;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy