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

com.aliyun.sdk.service.iot20180120.models.QueryEdgeInstanceHistoricDeploymentResponseBody 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 QueryEdgeInstanceHistoricDeploymentResponseBody} extends {@link TeaModel}
 *
 * 

QueryEdgeInstanceHistoricDeploymentResponseBody

*/ public class QueryEdgeInstanceHistoricDeploymentResponseBody 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 QueryEdgeInstanceHistoricDeploymentResponseBody(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 QueryEdgeInstanceHistoricDeploymentResponseBody 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 QueryEdgeInstanceHistoricDeploymentResponseBody build() { return new QueryEdgeInstanceHistoricDeploymentResponseBody(this); } } public static class DeploymentList extends TeaModel { @NameInMap("DeploymentId") private String deploymentId; @NameInMap("Description") private String description; @NameInMap("GmtCompleted") private String gmtCompleted; @NameInMap("GmtCompletedTimestamp") private Long gmtCompletedTimestamp; @NameInMap("GmtCreate") private String gmtCreate; @NameInMap("GmtCreateTimestamp") private Long gmtCreateTimestamp; @NameInMap("GmtModified") private String gmtModified; @NameInMap("GmtModifiedTimestamp") private Long gmtModifiedTimestamp; @NameInMap("Status") private Integer status; @NameInMap("Type") private String type; private DeploymentList(Builder builder) { this.deploymentId = builder.deploymentId; this.description = builder.description; this.gmtCompleted = builder.gmtCompleted; this.gmtCompletedTimestamp = builder.gmtCompletedTimestamp; this.gmtCreate = builder.gmtCreate; this.gmtCreateTimestamp = builder.gmtCreateTimestamp; this.gmtModified = builder.gmtModified; this.gmtModifiedTimestamp = builder.gmtModifiedTimestamp; this.status = builder.status; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static DeploymentList create() { return builder().build(); } /** * @return deploymentId */ public String getDeploymentId() { return this.deploymentId; } /** * @return description */ public String getDescription() { return this.description; } /** * @return gmtCompleted */ public String getGmtCompleted() { return this.gmtCompleted; } /** * @return gmtCompletedTimestamp */ public Long getGmtCompletedTimestamp() { return this.gmtCompletedTimestamp; } /** * @return gmtCreate */ public String getGmtCreate() { return this.gmtCreate; } /** * @return gmtCreateTimestamp */ public Long getGmtCreateTimestamp() { return this.gmtCreateTimestamp; } /** * @return gmtModified */ public String getGmtModified() { return this.gmtModified; } /** * @return gmtModifiedTimestamp */ public Long getGmtModifiedTimestamp() { return this.gmtModifiedTimestamp; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private String deploymentId; private String description; private String gmtCompleted; private Long gmtCompletedTimestamp; private String gmtCreate; private Long gmtCreateTimestamp; private String gmtModified; private Long gmtModifiedTimestamp; private Integer status; private String type; /** * DeploymentId. */ public Builder deploymentId(String deploymentId) { this.deploymentId = deploymentId; return this; } /** * Description. */ public Builder description(String description) { this.description = description; return this; } /** * GmtCompleted. */ public Builder gmtCompleted(String gmtCompleted) { this.gmtCompleted = gmtCompleted; return this; } /** * GmtCompletedTimestamp. */ public Builder gmtCompletedTimestamp(Long gmtCompletedTimestamp) { this.gmtCompletedTimestamp = gmtCompletedTimestamp; return this; } /** * GmtCreate. */ public Builder gmtCreate(String gmtCreate) { this.gmtCreate = gmtCreate; return this; } /** * GmtCreateTimestamp. */ public Builder gmtCreateTimestamp(Long gmtCreateTimestamp) { this.gmtCreateTimestamp = gmtCreateTimestamp; return this; } /** * GmtModified. */ public Builder gmtModified(String gmtModified) { this.gmtModified = gmtModified; return this; } /** * GmtModifiedTimestamp. */ public Builder gmtModifiedTimestamp(Long gmtModifiedTimestamp) { this.gmtModifiedTimestamp = gmtModifiedTimestamp; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public DeploymentList build() { return new DeploymentList(this); } } } public static class Data extends TeaModel { @NameInMap("CurrentPage") private Integer currentPage; @NameInMap("DeploymentList") private java.util.List < DeploymentList> deploymentList; @NameInMap("PageSize") private Integer pageSize; @NameInMap("Total") private Integer total; private Data(Builder builder) { this.currentPage = builder.currentPage; this.deploymentList = builder.deploymentList; 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 deploymentList */ public java.util.List < DeploymentList> getDeploymentList() { return this.deploymentList; } /** * @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 java.util.List < DeploymentList> deploymentList; private Integer pageSize; private Integer total; /** * CurrentPage. */ public Builder currentPage(Integer currentPage) { this.currentPage = currentPage; return this; } /** * DeploymentList. */ public Builder deploymentList(java.util.List < DeploymentList> deploymentList) { this.deploymentList = deploymentList; 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