com.aliyun.green20220302.models.ImageAsyncModerationResponse 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 ImageAsyncModerationResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ImageAsyncModerationResponseBody body;
public static ImageAsyncModerationResponse build(java.util.Map map) throws Exception {
ImageAsyncModerationResponse self = new ImageAsyncModerationResponse();
return TeaModel.build(map, self);
}
public ImageAsyncModerationResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public ImageAsyncModerationResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ImageAsyncModerationResponse setBody(ImageAsyncModerationResponseBody body) {
this.body = body;
return this;
}
public ImageAsyncModerationResponseBody getBody() {
return this.body;
}
}