com.aliyun.iot20180120.models.ListThingTemplatesResponseBody 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 ListThingTemplatesResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
@NameInMap("Success")
public Boolean success;
@NameInMap("Code")
public String code;
@NameInMap("ErrorMessage")
public String errorMessage;
@NameInMap("Data")
public java.util.List data;
public static ListThingTemplatesResponseBody build(java.util.Map map) throws Exception {
ListThingTemplatesResponseBody self = new ListThingTemplatesResponseBody();
return TeaModel.build(map, self);
}
public ListThingTemplatesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListThingTemplatesResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public ListThingTemplatesResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public ListThingTemplatesResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public ListThingTemplatesResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public static class ListThingTemplatesResponseBodyData extends TeaModel {
@NameInMap("CategoryKey")
public String categoryKey;
@NameInMap("CategoryName")
public String categoryName;
public static ListThingTemplatesResponseBodyData build(java.util.Map map) throws Exception {
ListThingTemplatesResponseBodyData self = new ListThingTemplatesResponseBodyData();
return TeaModel.build(map, self);
}
public ListThingTemplatesResponseBodyData setCategoryKey(String categoryKey) {
this.categoryKey = categoryKey;
return this;
}
public String getCategoryKey() {
return this.categoryKey;
}
public ListThingTemplatesResponseBodyData setCategoryName(String categoryName) {
this.categoryName = categoryName;
return this;
}
public String getCategoryName() {
return this.categoryName;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy