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