com.aliyun.iot20180120.models.SpeechByCombinationResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class SpeechByCombinationResponseBody extends TeaModel {
/**
* example:
* iot.system.SystemException
*/
@NameInMap("Code")
public String code;
/**
* example:
* An internal error occurred. Try again later.
*/
@NameInMap("ErrorMessage")
public String errorMessage;
/**
* example:
* 671D0F8F-FDC7-4B12-93FA-336C079C965A
*/
@NameInMap("RequestId")
public String requestId;
/**
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static SpeechByCombinationResponseBody build(java.util.Map map) throws Exception {
SpeechByCombinationResponseBody self = new SpeechByCombinationResponseBody();
return TeaModel.build(map, self);
}
public SpeechByCombinationResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public SpeechByCombinationResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public SpeechByCombinationResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public SpeechByCombinationResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy