com.aliyun.iot20180120.models.BatchCheckImportDeviceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class BatchCheckImportDeviceResponseBody extends TeaModel {
@NameInMap("Code")
public String code;
@NameInMap("Data")
public BatchCheckImportDeviceResponseBodyData data;
@NameInMap("ErrorMessage")
public String errorMessage;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Success")
public Boolean success;
public static BatchCheckImportDeviceResponseBody build(java.util.Map map) throws Exception {
BatchCheckImportDeviceResponseBody self = new BatchCheckImportDeviceResponseBody();
return TeaModel.build(map, self);
}
public BatchCheckImportDeviceResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public BatchCheckImportDeviceResponseBody setData(BatchCheckImportDeviceResponseBodyData data) {
this.data = data;
return this;
}
public BatchCheckImportDeviceResponseBodyData getData() {
return this.data;
}
public BatchCheckImportDeviceResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public BatchCheckImportDeviceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public BatchCheckImportDeviceResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class BatchCheckImportDeviceResponseBodyData extends TeaModel {
@NameInMap("InvalidDeviceNameList")
public java.util.List invalidDeviceNameList;
@NameInMap("InvalidDeviceSecretList")
public java.util.List invalidDeviceSecretList;
@NameInMap("InvalidSnList")
public java.util.List invalidSnList;
@NameInMap("RepeatedDeviceNameList")
public java.util.List repeatedDeviceNameList;
public static BatchCheckImportDeviceResponseBodyData build(java.util.Map map) throws Exception {
BatchCheckImportDeviceResponseBodyData self = new BatchCheckImportDeviceResponseBodyData();
return TeaModel.build(map, self);
}
public BatchCheckImportDeviceResponseBodyData setInvalidDeviceNameList(java.util.List invalidDeviceNameList) {
this.invalidDeviceNameList = invalidDeviceNameList;
return this;
}
public java.util.List getInvalidDeviceNameList() {
return this.invalidDeviceNameList;
}
public BatchCheckImportDeviceResponseBodyData setInvalidDeviceSecretList(java.util.List invalidDeviceSecretList) {
this.invalidDeviceSecretList = invalidDeviceSecretList;
return this;
}
public java.util.List getInvalidDeviceSecretList() {
return this.invalidDeviceSecretList;
}
public BatchCheckImportDeviceResponseBodyData setInvalidSnList(java.util.List invalidSnList) {
this.invalidSnList = invalidSnList;
return this;
}
public java.util.List getInvalidSnList() {
return this.invalidSnList;
}
public BatchCheckImportDeviceResponseBodyData setRepeatedDeviceNameList(java.util.List repeatedDeviceNameList) {
this.repeatedDeviceNameList = repeatedDeviceNameList;
return this;
}
public java.util.List getRepeatedDeviceNameList() {
return this.repeatedDeviceNameList;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy