com.aliyun.iot20180120.models.CreateEdgeInstanceResponseBody 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
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class CreateEdgeInstanceResponseBody extends TeaModel {
/**
* The error code. Success indicates that the call was successful. Other values indicate that specific errors occurred. For more information, see Error codes.
*
* example:
* Success
*/
@NameInMap("Code")
public String code;
/**
* The error message returned if the call failed.
*
* example:
* request parameter error
*/
@NameInMap("ErrorMessage")
public String errorMessage;
/**
* The ID of the edge instance.
*
* example:
* F3APY0tPLhmgGtx0****
*/
@NameInMap("InstanceId")
public String instanceId;
/**
* The ID of the request.
*
* example:
* 28D159F4-980F-423D-95F0-F705E9DFC016
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the call was successful. true: indicates that the call was successful. false: indicates that the call failed.
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static CreateEdgeInstanceResponseBody build(java.util.Map map) throws Exception {
CreateEdgeInstanceResponseBody self = new CreateEdgeInstanceResponseBody();
return TeaModel.build(map, self);
}
public CreateEdgeInstanceResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CreateEdgeInstanceResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public CreateEdgeInstanceResponseBody setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public CreateEdgeInstanceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateEdgeInstanceResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy