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

com.aliyun.dingtalkattendance_1_0.models.AttendanceBleDevicesRemoveResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class AttendanceBleDevicesRemoveResponseBody extends TeaModel {
    // 移出错误列表
    @NameInMap("errorList")
    public java.util.List errorList;

    // 移除成功蓝牙设备Id列表
    @NameInMap("successList")
    public java.util.List successList;

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

    public AttendanceBleDevicesRemoveResponseBody setErrorList(java.util.List errorList) {
        this.errorList = errorList;
        return this;
    }
    public java.util.List getErrorList() {
        return this.errorList;
    }

    public AttendanceBleDevicesRemoveResponseBody setSuccessList(java.util.List successList) {
        this.successList = successList;
        return this;
    }
    public java.util.List getSuccessList() {
        return this.successList;
    }

    public static class AttendanceBleDevicesRemoveResponseBodyErrorList extends TeaModel {
        // 错误code
        @NameInMap("code")
        public String code;

        // 移除失败蓝牙设备Id列表
        @NameInMap("failureList")
        public java.util.List failureList;

        // 错误信息
        @NameInMap("msg")
        public String msg;

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

        public AttendanceBleDevicesRemoveResponseBodyErrorList setCode(String code) {
            this.code = code;
            return this;
        }
        public String getCode() {
            return this.code;
        }

        public AttendanceBleDevicesRemoveResponseBodyErrorList setFailureList(java.util.List failureList) {
            this.failureList = failureList;
            return this;
        }
        public java.util.List getFailureList() {
            return this.failureList;
        }

        public AttendanceBleDevicesRemoveResponseBodyErrorList setMsg(String msg) {
            this.msg = msg;
            return this;
        }
        public String getMsg() {
            return this.msg;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy