All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.iot20180120.models.UpdateSoundCodeLabelResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

public class UpdateSoundCodeLabelResponseBody extends TeaModel {
    /**
     * example:
     * 

iot.soundcodeservice.NotSigned

*/ @NameInMap("Code") public String code; /** * 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 UpdateSoundCodeLabelResponseBody build(java.util.Map map) throws Exception { UpdateSoundCodeLabelResponseBody self = new UpdateSoundCodeLabelResponseBody(); return TeaModel.build(map, self); } public UpdateSoundCodeLabelResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public UpdateSoundCodeLabelResponseBody setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } public String getErrorMessage() { return this.errorMessage; } public UpdateSoundCodeLabelResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateSoundCodeLabelResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy