com.aliyun.iot20180120.models.DeleteSubscribeRelationResponseBody 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 DeleteSubscribeRelationResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
@NameInMap("ErrorMessage")
public String errorMessage;
@NameInMap("Code")
public String code;
@NameInMap("Success")
public Boolean success;
public static DeleteSubscribeRelationResponseBody build(java.util.Map map) throws Exception {
DeleteSubscribeRelationResponseBody self = new DeleteSubscribeRelationResponseBody();
return TeaModel.build(map, self);
}
public DeleteSubscribeRelationResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteSubscribeRelationResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public DeleteSubscribeRelationResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public DeleteSubscribeRelationResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy