com.aliyun.sdk.service.iot20180120.models.QueryEdgeInstanceGatewayResponseBody 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 QueryEdgeInstanceGatewayResponseBody} extends {@link TeaModel}
*
* QueryEdgeInstanceGatewayResponseBody
*/
public class QueryEdgeInstanceGatewayResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("ErrorMessage")
private String errorMessage;
@NameInMap("GatewayList")
private java.util.List < GatewayList> gatewayList;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private QueryEdgeInstanceGatewayResponseBody(Builder builder) {
this.code = builder.code;
this.errorMessage = builder.errorMessage;
this.gatewayList = builder.gatewayList;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static QueryEdgeInstanceGatewayResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return errorMessage
*/
public String getErrorMessage() {
return this.errorMessage;
}
/**
* @return gatewayList
*/
public java.util.List < GatewayList> getGatewayList() {
return this.gatewayList;
}
/**
* @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 String errorMessage;
private java.util.List < GatewayList> gatewayList;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* ErrorMessage.
*/
public Builder errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* GatewayList.
*/
public Builder gatewayList(java.util.List < GatewayList> gatewayList) {
this.gatewayList = gatewayList;
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 QueryEdgeInstanceGatewayResponseBody build() {
return new QueryEdgeInstanceGatewayResponseBody(this);
}
}
public static class GatewayList extends TeaModel {
@NameInMap("DeviceName")
private String deviceName;
@NameInMap("EdgeVersion")
private String edgeVersion;
@NameInMap("IotId")
private String iotId;
@NameInMap("ProductKey")
private String productKey;
private GatewayList(Builder builder) {
this.deviceName = builder.deviceName;
this.edgeVersion = builder.edgeVersion;
this.iotId = builder.iotId;
this.productKey = builder.productKey;
}
public static Builder builder() {
return new Builder();
}
public static GatewayList create() {
return builder().build();
}
/**
* @return deviceName
*/
public String getDeviceName() {
return this.deviceName;
}
/**
* @return edgeVersion
*/
public String getEdgeVersion() {
return this.edgeVersion;
}
/**
* @return iotId
*/
public String getIotId() {
return this.iotId;
}
/**
* @return productKey
*/
public String getProductKey() {
return this.productKey;
}
public static final class Builder {
private String deviceName;
private String edgeVersion;
private String iotId;
private String productKey;
/**
* DeviceName.
*/
public Builder deviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
/**
* EdgeVersion.
*/
public Builder edgeVersion(String edgeVersion) {
this.edgeVersion = edgeVersion;
return this;
}
/**
* IotId.
*/
public Builder iotId(String iotId) {
this.iotId = iotId;
return this;
}
/**
* ProductKey.
*/
public Builder productKey(String productKey) {
this.productKey = productKey;
return this;
}
public GatewayList build() {
return new GatewayList(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy