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

com.aliyun.ice20201109.models.UpdateCustomizedVoiceResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class UpdateCustomizedVoiceResponseBody extends TeaModel {
    /**
     * 

The request ID.

* * example: *

4E84BE44-58A7---FBEBEA16EF94

*/ @NameInMap("RequestId") public String requestId; /** *

Indicates whether the request was successful. Valid values:

*
    *
  • true
  • *
  • false
  • *
* * example: *

true

*/ @NameInMap("Success") public Boolean success; public static UpdateCustomizedVoiceResponseBody build(java.util.Map map) throws Exception { UpdateCustomizedVoiceResponseBody self = new UpdateCustomizedVoiceResponseBody(); return TeaModel.build(map, self); } public UpdateCustomizedVoiceResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateCustomizedVoiceResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy