com.aliyun.iot20180120.models.TestSpeechResponseBody 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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class TestSpeechResponseBody extends TeaModel {
@NameInMap("Code")
public String code;
@NameInMap("Data")
public TestSpeechResponseBodyData data;
@NameInMap("ErrorMessage")
public String errorMessage;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Success")
public Boolean success;
public static TestSpeechResponseBody build(java.util.Map map) throws Exception {
TestSpeechResponseBody self = new TestSpeechResponseBody();
return TeaModel.build(map, self);
}
public TestSpeechResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public TestSpeechResponseBody setData(TestSpeechResponseBodyData data) {
this.data = data;
return this;
}
public TestSpeechResponseBodyData getData() {
return this.data;
}
public TestSpeechResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public TestSpeechResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public TestSpeechResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class TestSpeechResponseBodyData extends TeaModel {
@NameInMap("items")
public java.util.List items;
public static TestSpeechResponseBodyData build(java.util.Map map) throws Exception {
TestSpeechResponseBodyData self = new TestSpeechResponseBodyData();
return TeaModel.build(map, self);
}
public TestSpeechResponseBodyData setItems(java.util.List items) {
this.items = items;
return this;
}
public java.util.List getItems() {
return this.items;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy