com.aliyun.iot20180120.models.CreateProductTopicRequest 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 CreateProductTopicRequest extends TeaModel {
@NameInMap("Desc")
public String desc;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("Operation")
public String operation;
@NameInMap("ProductKey")
public String productKey;
@NameInMap("TopicShortName")
public String topicShortName;
public static CreateProductTopicRequest build(java.util.Map map) throws Exception {
CreateProductTopicRequest self = new CreateProductTopicRequest();
return TeaModel.build(map, self);
}
public CreateProductTopicRequest setDesc(String desc) {
this.desc = desc;
return this;
}
public String getDesc() {
return this.desc;
}
public CreateProductTopicRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public CreateProductTopicRequest setOperation(String operation) {
this.operation = operation;
return this;
}
public String getOperation() {
return this.operation;
}
public CreateProductTopicRequest setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public CreateProductTopicRequest setTopicShortName(String topicShortName) {
this.topicShortName = topicShortName;
return this;
}
public String getTopicShortName() {
return this.topicShortName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy