![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkattendance_1_0.models.AttendanceBleDevicesAddResponseBody 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 AttendanceBleDevicesAddResponseBody extends TeaModel {
@NameInMap("errorList")
public java.util.List errorList;
@NameInMap("successList")
public java.util.List successList;
public static AttendanceBleDevicesAddResponseBody build(java.util.Map map) throws Exception {
AttendanceBleDevicesAddResponseBody self = new AttendanceBleDevicesAddResponseBody();
return TeaModel.build(map, self);
}
public AttendanceBleDevicesAddResponseBody setErrorList(java.util.List errorList) {
this.errorList = errorList;
return this;
}
public java.util.List getErrorList() {
return this.errorList;
}
public AttendanceBleDevicesAddResponseBody setSuccessList(java.util.List successList) {
this.successList = successList;
return this;
}
public java.util.List getSuccessList() {
return this.successList;
}
public static class AttendanceBleDevicesAddResponseBodyErrorListFailureList extends TeaModel {
/**
* example:
* 3244523553
*/
@NameInMap("deviceId")
public Long deviceId;
/**
* example:
* 蓝牙设备1
*/
@NameInMap("deviceName")
public String deviceName;
/**
* example:
* dfsgdsdgd
*/
@NameInMap("sn")
public String sn;
public static AttendanceBleDevicesAddResponseBodyErrorListFailureList build(java.util.Map map) throws Exception {
AttendanceBleDevicesAddResponseBodyErrorListFailureList self = new AttendanceBleDevicesAddResponseBodyErrorListFailureList();
return TeaModel.build(map, self);
}
public AttendanceBleDevicesAddResponseBodyErrorListFailureList setDeviceId(Long deviceId) {
this.deviceId = deviceId;
return this;
}
public Long getDeviceId() {
return this.deviceId;
}
public AttendanceBleDevicesAddResponseBodyErrorListFailureList setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public AttendanceBleDevicesAddResponseBodyErrorListFailureList setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
}
public static class AttendanceBleDevicesAddResponseBodyErrorList 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 AttendanceBleDevicesAddResponseBodyErrorList build(java.util.Map map) throws Exception {
AttendanceBleDevicesAddResponseBodyErrorList self = new AttendanceBleDevicesAddResponseBodyErrorList();
return TeaModel.build(map, self);
}
public AttendanceBleDevicesAddResponseBodyErrorList setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public AttendanceBleDevicesAddResponseBodyErrorList setFailureList(java.util.List failureList) {
this.failureList = failureList;
return this;
}
public java.util.List getFailureList() {
return this.failureList;
}
public AttendanceBleDevicesAddResponseBodyErrorList setMsg(String msg) {
this.msg = msg;
return this;
}
public String getMsg() {
return this.msg;
}
}
public static class AttendanceBleDevicesAddResponseBodySuccessList extends TeaModel {
/**
* example:
* 6567575
*/
@NameInMap("deviceId")
public Long deviceId;
/**
* example:
* 蓝牙设备2
*/
@NameInMap("deviceName")
public String deviceName;
/**
* example:
* xfdfsdfgsdgfs
*/
@NameInMap("sn")
public String sn;
public static AttendanceBleDevicesAddResponseBodySuccessList build(java.util.Map map) throws Exception {
AttendanceBleDevicesAddResponseBodySuccessList self = new AttendanceBleDevicesAddResponseBodySuccessList();
return TeaModel.build(map, self);
}
public AttendanceBleDevicesAddResponseBodySuccessList setDeviceId(Long deviceId) {
this.deviceId = deviceId;
return this;
}
public Long getDeviceId() {
return this.deviceId;
}
public AttendanceBleDevicesAddResponseBodySuccessList setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public AttendanceBleDevicesAddResponseBodySuccessList setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy