com.aliyun.green20220302.models.VoiceModerationCancelResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of green20220302 Show documentation
Show all versions of green20220302 Show documentation
Alibaba Cloud Green (20220302) SDK for Java
// 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;
}
}