com.aliyun.waf_openapi20211001.models.ClearMajorProtectionBlackIpResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waf_openapi20211001 Show documentation
Show all versions of waf_openapi20211001 Show documentation
Alibaba Cloud waf-openapi (20211001) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.waf_openapi20211001.models;
import com.aliyun.tea.*;
public class ClearMajorProtectionBlackIpResponseBody extends TeaModel {
/**
* The ID of the request.
*
* example:
* 66A98669-CC6E-4F3E-80A6-3014697B11AE
*/
@NameInMap("RequestId")
public String requestId;
public static ClearMajorProtectionBlackIpResponseBody build(java.util.Map map) throws Exception {
ClearMajorProtectionBlackIpResponseBody self = new ClearMajorProtectionBlackIpResponseBody();
return TeaModel.build(map, self);
}
public ClearMajorProtectionBlackIpResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy