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

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

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

import com.aliyun.tea.*;

public class GetCustomizedVoiceJobResponseBody extends TeaModel {
    @NameInMap("Data")
    public GetCustomizedVoiceJobResponseBodyData data;

    /**
     * example:
     * 

63E8B7C7-4812-46AD-0FA56029AC86

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

true

*/ @NameInMap("Success") public Boolean success; public static GetCustomizedVoiceJobResponseBody build(java.util.Map map) throws Exception { GetCustomizedVoiceJobResponseBody self = new GetCustomizedVoiceJobResponseBody(); return TeaModel.build(map, self); } public GetCustomizedVoiceJobResponseBody setData(GetCustomizedVoiceJobResponseBodyData data) { this.data = data; return this; } public GetCustomizedVoiceJobResponseBodyData getData() { return this.data; } public GetCustomizedVoiceJobResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetCustomizedVoiceJobResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public static class GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob extends TeaModel { @NameInMap("CreateTime") public String createTime; @NameInMap("Gender") public String gender; /** * example: *

571c704445f9a0ee011406c2

*/ @NameInMap("JobId") public String jobId; @NameInMap("Message") public String message; @NameInMap("Scenario") public String scenario; /** * example: *

Fail

*/ @NameInMap("Status") public String status; @NameInMap("Type") public String type; @NameInMap("VoiceDesc") public String voiceDesc; /** * example: *

xiaozhuan

*/ @NameInMap("VoiceId") public String voiceId; @NameInMap("VoiceName") public String voiceName; public static GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob build(java.util.Map map) throws Exception { GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob self = new GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob(); return TeaModel.build(map, self); } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setGender(String gender) { this.gender = gender; return this; } public String getGender() { return this.gender; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setJobId(String jobId) { this.jobId = jobId; return this; } public String getJobId() { return this.jobId; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setScenario(String scenario) { this.scenario = scenario; return this; } public String getScenario() { return this.scenario; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setVoiceDesc(String voiceDesc) { this.voiceDesc = voiceDesc; return this; } public String getVoiceDesc() { return this.voiceDesc; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setVoiceId(String voiceId) { this.voiceId = voiceId; return this; } public String getVoiceId() { return this.voiceId; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob setVoiceName(String voiceName) { this.voiceName = voiceName; return this; } public String getVoiceName() { return this.voiceName; } } public static class GetCustomizedVoiceJobResponseBodyData extends TeaModel { @NameInMap("CustomizedVoiceJob") public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob customizedVoiceJob; public static GetCustomizedVoiceJobResponseBodyData build(java.util.Map map) throws Exception { GetCustomizedVoiceJobResponseBodyData self = new GetCustomizedVoiceJobResponseBodyData(); return TeaModel.build(map, self); } public GetCustomizedVoiceJobResponseBodyData setCustomizedVoiceJob(GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob customizedVoiceJob) { this.customizedVoiceJob = customizedVoiceJob; return this; } public GetCustomizedVoiceJobResponseBodyDataCustomizedVoiceJob getCustomizedVoiceJob() { return this.customizedVoiceJob; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy