com.aliyun.dingtalkattendance_1_0.models.AttendanceBleDevicesRemoveResponseBody 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.dingtalkattendance_1_0.models;
import com.aliyun.tea.*;
public class AttendanceBleDevicesRemoveResponseBody extends TeaModel {
@NameInMap("errorList")
public java.util.List errorList;
@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 {
/**
* example:
* 400001
*/
@NameInMap("code")
public String code;
@NameInMap("failureList")
public java.util.List failureList;
/**
* example:
* error
*/
@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;
}
}
}