com.aliyun.iot20180120.models.QueryThingModelPublishedRequest 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 QueryThingModelPublishedRequest extends TeaModel {
@NameInMap("ApiProduct")
public String apiProduct;
@NameInMap("ApiRevision")
public String apiRevision;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("ProductKey")
public String productKey;
@NameInMap("ResourceGroupId")
public String resourceGroupId;
@NameInMap("ModelVersion")
public String modelVersion;
@NameInMap("FunctionBlockId")
public String functionBlockId;
@NameInMap("RealTenantId")
public String realTenantId;
@NameInMap("RealTripartiteKey")
public String realTripartiteKey;
public static QueryThingModelPublishedRequest build(java.util.Map map) throws Exception {
QueryThingModelPublishedRequest self = new QueryThingModelPublishedRequest();
return TeaModel.build(map, self);
}
public QueryThingModelPublishedRequest setApiProduct(String apiProduct) {
this.apiProduct = apiProduct;
return this;
}
public String getApiProduct() {
return this.apiProduct;
}
public QueryThingModelPublishedRequest setApiRevision(String apiRevision) {
this.apiRevision = apiRevision;
return this;
}
public String getApiRevision() {
return this.apiRevision;
}
public QueryThingModelPublishedRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QueryThingModelPublishedRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public QueryThingModelPublishedRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public QueryThingModelPublishedRequest setModelVersion(String modelVersion) {
this.modelVersion = modelVersion;
return this;
}
public String getModelVersion() {
return this.modelVersion;
}
public QueryThingModelPublishedRequest setFunctionBlockId(String functionBlockId) {
this.functionBlockId = functionBlockId;
return this;
}
public String getFunctionBlockId() {
return this.functionBlockId;
}
public QueryThingModelPublishedRequest setRealTenantId(String realTenantId) {
this.realTenantId = realTenantId;
return this;
}
public String getRealTenantId() {
return this.realTenantId;
}
public QueryThingModelPublishedRequest setRealTripartiteKey(String realTripartiteKey) {
this.realTripartiteKey = realTripartiteKey;
return this;
}
public String getRealTripartiteKey() {
return this.realTripartiteKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy