com.aliyun.sas20181203.models.DeleteMaliciousFileWhitelistConfigResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DeleteMaliciousFileWhitelistConfigResponseBody extends TeaModel {
/**
* The response code. The status code 200 indicates that the request was successful. Other status codes indicate that the request failed. You can identify the cause of the failure based on the status code.
*
* example:
* 200
*/
@NameInMap("Code")
public String code;
/**
* The HTTP status code.
*
* example:
* 200
*/
@NameInMap("HttpStatusCode")
public Integer httpStatusCode;
/**
* The returned message.
*
* example:
* successful
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* D03DD0FD-6041-5107-AC00-383E28F1****
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the request was successful. Valid values:
*
* - true
* - false
*
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static DeleteMaliciousFileWhitelistConfigResponseBody build(java.util.Map map) throws Exception {
DeleteMaliciousFileWhitelistConfigResponseBody self = new DeleteMaliciousFileWhitelistConfigResponseBody();
return TeaModel.build(map, self);
}
public DeleteMaliciousFileWhitelistConfigResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public DeleteMaliciousFileWhitelistConfigResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public DeleteMaliciousFileWhitelistConfigResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public DeleteMaliciousFileWhitelistConfigResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteMaliciousFileWhitelistConfigResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy