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