com.aliyun.iot20180120.models.CreateSoundCodeLabelResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class CreateSoundCodeLabelResponseBody extends TeaModel {
/**
* example:
* iot.soundcodeservice.NotSigned
*/
@NameInMap("Code")
public String code;
/**
* example:
* Md3ZiTL888K9llXDy7890***********
*/
@NameInMap("Data")
public String data;
/**
* example:
* sound code service has not been signed
*/
@NameInMap("ErrorMessage")
public String errorMessage;
/**
* example:
* 66FF51D3--49F1-B1A2-
*/
@NameInMap("RequestId")
public String requestId;
/**
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static CreateSoundCodeLabelResponseBody build(java.util.Map map) throws Exception {
CreateSoundCodeLabelResponseBody self = new CreateSoundCodeLabelResponseBody();
return TeaModel.build(map, self);
}
public CreateSoundCodeLabelResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CreateSoundCodeLabelResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public CreateSoundCodeLabelResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public CreateSoundCodeLabelResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateSoundCodeLabelResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy