com.aliyun.iot20180120.models.QuerySubscribeRelationRequest 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 QuerySubscribeRelationRequest extends TeaModel {
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("ProductKey")
public String productKey;
@NameInMap("Type")
public String type;
public static QuerySubscribeRelationRequest build(java.util.Map map) throws Exception {
QuerySubscribeRelationRequest self = new QuerySubscribeRelationRequest();
return TeaModel.build(map, self);
}
public QuerySubscribeRelationRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QuerySubscribeRelationRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public QuerySubscribeRelationRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy