com.aliyun.iot20180120.models.QueryProductTopicRequest 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
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class QueryProductTopicRequest extends TeaModel {
/**
* The ID of the instance. You can view the instance ID on the Overview page in the IoT Platform console.
*
*
* - If your instance has an ID, you must configure this parameter. If you do not set this parameter, the call fails.
* - If your instance has no Overview page or ID, you do not need to set this parameter.
*
*
* For more information, see Overview.
*
* example:
* iot_instc_pu****_c*-v64********
*/
@NameInMap("IotInstanceId")
public String iotInstanceId;
/**
* The ProductKey of the product.
* This parameter is required.
*
* example:
* HMyB*******
*/
@NameInMap("ProductKey")
public String productKey;
public static QueryProductTopicRequest build(java.util.Map map) throws Exception {
QueryProductTopicRequest self = new QueryProductTopicRequest();
return TeaModel.build(map, self);
}
public QueryProductTopicRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QueryProductTopicRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy