com.aliyun.sdk.service.iot20180120.models.GetSpeechDeviceDetailResponseBody 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 GetSpeechDeviceDetailResponseBody} extends {@link TeaModel}
*
* GetSpeechDeviceDetailResponseBody
*/
public class GetSpeechDeviceDetailResponseBody 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 GetSpeechDeviceDetailResponseBody(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 GetSpeechDeviceDetailResponseBody 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 GetSpeechDeviceDetailResponseBody build() {
return new GetSpeechDeviceDetailResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("AvailableSpace")
private Float availableSpace;
@NameInMap("DeviceName")
private String deviceName;
@NameInMap("IotId")
private String iotId;
@NameInMap("ProductKey")
private String productKey;
@NameInMap("SpeechListUpdateTime")
private Long speechListUpdateTime;
@NameInMap("Status")
private String status;
@NameInMap("TotalSpace")
private Float totalSpace;
private Data(Builder builder) {
this.availableSpace = builder.availableSpace;
this.deviceName = builder.deviceName;
this.iotId = builder.iotId;
this.productKey = builder.productKey;
this.speechListUpdateTime = builder.speechListUpdateTime;
this.status = builder.status;
this.totalSpace = builder.totalSpace;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return availableSpace
*/
public Float getAvailableSpace() {
return this.availableSpace;
}
/**
* @return deviceName
*/
public String getDeviceName() {
return this.deviceName;
}
/**
* @return iotId
*/
public String getIotId() {
return this.iotId;
}
/**
* @return productKey
*/
public String getProductKey() {
return this.productKey;
}
/**
* @return speechListUpdateTime
*/
public Long getSpeechListUpdateTime() {
return this.speechListUpdateTime;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
/**
* @return totalSpace
*/
public Float getTotalSpace() {
return this.totalSpace;
}
public static final class Builder {
private Float availableSpace;
private String deviceName;
private String iotId;
private String productKey;
private Long speechListUpdateTime;
private String status;
private Float totalSpace;
/**
* AvailableSpace.
*/
public Builder availableSpace(Float availableSpace) {
this.availableSpace = availableSpace;
return this;
}
/**
* DeviceName.
*/
public Builder deviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
/**
* IotId.
*/
public Builder iotId(String iotId) {
this.iotId = iotId;
return this;
}
/**
* ProductKey.
*/
public Builder productKey(String productKey) {
this.productKey = productKey;
return this;
}
/**
* SpeechListUpdateTime.
*/
public Builder speechListUpdateTime(Long speechListUpdateTime) {
this.speechListUpdateTime = speechListUpdateTime;
return this;
}
/**
* Status.
*/
public Builder status(String status) {
this.status = status;
return this;
}
/**
* TotalSpace.
*/
public Builder totalSpace(Float totalSpace) {
this.totalSpace = totalSpace;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy