com.aliyun.iot20180120.models.TriggerSceneRuleRequest 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 TriggerSceneRuleRequest extends TeaModel {
@NameInMap("InstanceId")
public String instanceId;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("RuleId")
public String ruleId;
public static TriggerSceneRuleRequest build(java.util.Map map) throws Exception {
TriggerSceneRuleRequest self = new TriggerSceneRuleRequest();
return TeaModel.build(map, self);
}
public TriggerSceneRuleRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public TriggerSceneRuleRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public TriggerSceneRuleRequest setRuleId(String ruleId) {
this.ruleId = ruleId;
return this;
}
public String getRuleId() {
return this.ruleId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy