com.aliyun.iot20180120.models.UpdateThingModelRequest 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 UpdateThingModelRequest extends TeaModel {
@NameInMap("FunctionBlockId")
public String functionBlockId;
@NameInMap("FunctionBlockName")
public String functionBlockName;
@NameInMap("Identifier")
public String identifier;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("ProductKey")
public String productKey;
@NameInMap("ThingModelJson")
public String thingModelJson;
public static UpdateThingModelRequest build(java.util.Map map) throws Exception {
UpdateThingModelRequest self = new UpdateThingModelRequest();
return TeaModel.build(map, self);
}
public UpdateThingModelRequest setFunctionBlockId(String functionBlockId) {
this.functionBlockId = functionBlockId;
return this;
}
public String getFunctionBlockId() {
return this.functionBlockId;
}
public UpdateThingModelRequest setFunctionBlockName(String functionBlockName) {
this.functionBlockName = functionBlockName;
return this;
}
public String getFunctionBlockName() {
return this.functionBlockName;
}
public UpdateThingModelRequest setIdentifier(String identifier) {
this.identifier = identifier;
return this;
}
public String getIdentifier() {
return this.identifier;
}
public UpdateThingModelRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public UpdateThingModelRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public UpdateThingModelRequest setThingModelJson(String thingModelJson) {
this.thingModelJson = thingModelJson;
return this;
}
public String getThingModelJson() {
return this.thingModelJson;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy