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

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

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

import com.aliyun.tea.*;

public class VoiceModerationCancelResponseBody extends TeaModel {
    /**
     * 

The returned HTTP status code.

* * example: *

200

*/ @NameInMap("Code") public Integer code; /** *

The message that is returned in response to the request.

* * example: *

SUCCESS

*/ @NameInMap("Message") public String message; /** *

The request ID.

* * example: *

4A926AE2-4C96-573F-824F-0532960799F8

*/ @NameInMap("RequestId") public String requestId; public static VoiceModerationCancelResponseBody build(java.util.Map map) throws Exception { VoiceModerationCancelResponseBody self = new VoiceModerationCancelResponseBody(); return TeaModel.build(map, self); } public VoiceModerationCancelResponseBody setCode(Integer code) { this.code = code; return this; } public Integer getCode() { return this.code; } public VoiceModerationCancelResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public VoiceModerationCancelResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy