All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.iot20180120.models.QueryEdgeInstanceSceneRuleResponseBody Maven / Gradle / Ivy

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 QueryEdgeInstanceSceneRuleResponseBody} extends {@link TeaModel}
 *
 * 

QueryEdgeInstanceSceneRuleResponseBody

*/ public class QueryEdgeInstanceSceneRuleResponseBody 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 QueryEdgeInstanceSceneRuleResponseBody(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 QueryEdgeInstanceSceneRuleResponseBody 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 QueryEdgeInstanceSceneRuleResponseBody build() { return new QueryEdgeInstanceSceneRuleResponseBody(this); } } public static class RuleList extends TeaModel { @NameInMap("GmtCreate") private Long gmtCreate; @NameInMap("IsExisted") private Integer isExisted; @NameInMap("RuleId") private String ruleId; @NameInMap("RuleName") private String ruleName; @NameInMap("Status") private Integer status; private RuleList(Builder builder) { this.gmtCreate = builder.gmtCreate; this.isExisted = builder.isExisted; this.ruleId = builder.ruleId; this.ruleName = builder.ruleName; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static RuleList create() { return builder().build(); } /** * @return gmtCreate */ public Long getGmtCreate() { return this.gmtCreate; } /** * @return isExisted */ public Integer getIsExisted() { return this.isExisted; } /** * @return ruleId */ public String getRuleId() { return this.ruleId; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @return status */ public Integer getStatus() { return this.status; } public static final class Builder { private Long gmtCreate; private Integer isExisted; private String ruleId; private String ruleName; private Integer status; /** * GmtCreate. */ public Builder gmtCreate(Long gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * IsExisted. */ public Builder isExisted(Integer isExisted) { this.isExisted = isExisted; return this; } /** * RuleId. */ public Builder ruleId(String ruleId) { this.ruleId = ruleId; return this; } /** * RuleName. */ public Builder ruleName(String ruleName) { this.ruleName = ruleName; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } public RuleList build() { return new RuleList(this); } } } public static class Data extends TeaModel { @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RuleList") private java.util.List < RuleList> ruleList; @NameInMap("Total") private Integer total; private Data(Builder builder) { this.currentPage = builder.currentPage; this.pageSize = builder.pageSize; this.ruleList = builder.ruleList; 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 pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return ruleList */ public java.util.List < RuleList> getRuleList() { return this.ruleList; } /** * @return total */ public Integer getTotal() { return this.total; } public static final class Builder { private Integer currentPage; private Integer pageSize; private java.util.List < RuleList> ruleList; private Integer total; /** * CurrentPage. */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RuleList. */ public Builder ruleList(java.util.List < RuleList> ruleList) { this.ruleList = ruleList; 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