com.aliyun.sdk.service.iot20180120.models.QuerySummarySceneRuleLogResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-iot20180120 Show documentation
Show all versions of alibabacloud-iot20180120 Show documentation
Alibaba Cloud Iot (20180120) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.iot20180120.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link QuerySummarySceneRuleLogResponseBody} extends {@link TeaModel}
*
* QuerySummarySceneRuleLogResponseBody
*/
public class QuerySummarySceneRuleLogResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("ErrorMessage")
private String errorMessage;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private QuerySummarySceneRuleLogResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.errorMessage = builder.errorMessage;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static QuerySummarySceneRuleLogResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private Data data;
private String errorMessage;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* ErrorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public QuerySummarySceneRuleLogResponseBody build() {
return new QuerySummarySceneRuleLogResponseBody(this);
}
}
public static class LogInfo extends TeaModel {
@NameInMap("LogTime")
private Integer logTime;
@NameInMap("Result")
private String result;
@NameInMap("TraceId")
private String traceId;
private LogInfo(Builder builder) {
this.logTime = builder.logTime;
this.result = builder.result;
this.traceId = builder.traceId;
}
public static Builder builder() {
return new Builder();
}
public static LogInfo create() {
return builder().build();
}
/**
* @return logTime
*/
public Integer getLogTime() {
return this.logTime;
}
/**
* @return result
*/
public String getResult() {
return this.result;
}
/**
* @return traceId
*/
public String getTraceId() {
return this.traceId;
}
public static final class Builder {
private Integer logTime;
private String result;
private String traceId;
/**
* LogTime.
*/
public Builder logTime(Integer logTime) {
this.logTime = logTime;
return this;
}
/**
* Result.
*/
public Builder result(String result) {
this.result = result;
return this;
}
/**
* TraceId.
*/
public Builder traceId(String traceId) {
this.traceId = traceId;
return this;
}
public LogInfo build() {
return new LogInfo(this);
}
}
}
public static class LogList extends TeaModel {
@NameInMap("LogInfo")
private java.util.List < LogInfo> logInfo;
private LogList(Builder builder) {
this.logInfo = builder.logInfo;
}
public static Builder builder() {
return new Builder();
}
public static LogList create() {
return builder().build();
}
/**
* @return logInfo
*/
public java.util.List < LogInfo> getLogInfo() {
return this.logInfo;
}
public static final class Builder {
private java.util.List < LogInfo> logInfo;
/**
* LogInfo.
*/
public Builder logInfo(java.util.List < LogInfo> logInfo) {
this.logInfo = logInfo;
return this;
}
public LogList build() {
return new LogList(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("CurrentPage")
private Integer currentPage;
@NameInMap("LogList")
private LogList logList;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("Total")
private Integer total;
private Data(Builder builder) {
this.currentPage = builder.currentPage;
this.logList = builder.logList;
this.pageSize = builder.pageSize;
this.total = builder.total;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return currentPage
*/
public Integer getCurrentPage() {
return this.currentPage;
}
/**
* @return logList
*/
public LogList getLogList() {
return this.logList;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return total
*/
public Integer getTotal() {
return this.total;
}
public static final class Builder {
private Integer currentPage;
private LogList logList;
private Integer pageSize;
private Integer total;
/**
* CurrentPage.
*/
public Builder currentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
/**
* LogList.
*/
public Builder logList(LogList logList) {
this.logList = logList;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Total.
*/
public Builder total(Integer total) {
this.total = total;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy