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

com.aliyun.dingtalktranscribe_1_0.models.RemovePermissionResponseBody 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.dingtalktranscribe_1_0.models;

import com.aliyun.tea.*;

public class RemovePermissionResponseBody extends TeaModel {
    // 当执行出错的时候,移除权限失败的用户昵称列表
    @NameInMap("data")
    public RemovePermissionResponseBodyData data;

    // 服务端返回的错误代码
    @NameInMap("statusCode")
    public Integer statusCode;

    // 描述本次调用的业务层面是否成功
    @NameInMap("success")
    public Boolean success;

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

    public RemovePermissionResponseBody setData(RemovePermissionResponseBodyData data) {
        this.data = data;
        return this;
    }
    public RemovePermissionResponseBodyData getData() {
        return this.data;
    }

    public RemovePermissionResponseBody setStatusCode(Integer statusCode) {
        this.statusCode = statusCode;
        return this;
    }
    public Integer getStatusCode() {
        return this.statusCode;
    }

    public RemovePermissionResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

    public static class RemovePermissionResponseBodyData extends TeaModel {
        @NameInMap("failNameList")
        public java.util.List failNameList;

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

        public RemovePermissionResponseBodyData setFailNameList(java.util.List failNameList) {
            this.failNameList = failNameList;
            return this;
        }
        public java.util.List getFailNameList() {
            return this.failNameList;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy