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

com.aliyun.green20220302.models.VoiceModerationResponseBody Maven / Gradle / Ivy

There is a newer version: 2.19.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.green20220302.models;

import com.aliyun.tea.*;

public class VoiceModerationResponseBody extends TeaModel {
    @NameInMap("Code")
    public Integer code;

    @NameInMap("Data")
    public VoiceModerationResponseBodyData data;

    @NameInMap("Message")
    public String message;

    /**
     * 

Id of the request

*/ @NameInMap("RequestId") public String requestId; public static VoiceModerationResponseBody build(java.util.Map map) throws Exception { VoiceModerationResponseBody self = new VoiceModerationResponseBody(); return TeaModel.build(map, self); } public VoiceModerationResponseBody setCode(Integer code) { this.code = code; return this; } public Integer getCode() { return this.code; } public VoiceModerationResponseBody setData(VoiceModerationResponseBodyData data) { this.data = data; return this; } public VoiceModerationResponseBodyData getData() { return this.data; } public VoiceModerationResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public VoiceModerationResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class VoiceModerationResponseBodyData extends TeaModel { @NameInMap("DataId") public String dataId; @NameInMap("TaskId") public String taskId; public static VoiceModerationResponseBodyData build(java.util.Map map) throws Exception { VoiceModerationResponseBodyData self = new VoiceModerationResponseBodyData(); return TeaModel.build(map, self); } public VoiceModerationResponseBodyData setDataId(String dataId) { this.dataId = dataId; return this; } public String getDataId() { return this.dataId; } public VoiceModerationResponseBodyData setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy