com.aliyun.iot20180120.models.QuerySummarySceneRuleLogRequest 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 QuerySummarySceneRuleLogRequest extends TeaModel {
@NameInMap("CurrentPage")
public Integer currentPage;
@NameInMap("EndTime")
public Integer endTime;
@NameInMap("IotInstanceId")
public String iotInstanceId;
@NameInMap("PageSize")
public Integer pageSize;
@NameInMap("RuleId")
public String ruleId;
@NameInMap("StartTime")
public Integer startTime;
@NameInMap("Status")
public String status;
public static QuerySummarySceneRuleLogRequest build(java.util.Map map) throws Exception {
QuerySummarySceneRuleLogRequest self = new QuerySummarySceneRuleLogRequest();
return TeaModel.build(map, self);
}
public QuerySummarySceneRuleLogRequest setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public QuerySummarySceneRuleLogRequest setEndTime(Integer endTime) {
this.endTime = endTime;
return this;
}
public Integer getEndTime() {
return this.endTime;
}
public QuerySummarySceneRuleLogRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public QuerySummarySceneRuleLogRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public QuerySummarySceneRuleLogRequest setRuleId(String ruleId) {
this.ruleId = ruleId;
return this;
}
public String getRuleId() {
return this.ruleId;
}
public QuerySummarySceneRuleLogRequest setStartTime(Integer startTime) {
this.startTime = startTime;
return this;
}
public Integer getStartTime() {
return this.startTime;
}
public QuerySummarySceneRuleLogRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy