com.aliyun.sas20181203.models.BatchOperateCommonOverallConfigResponseBody 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 BatchOperateCommonOverallConfigResponseBody extends TeaModel {
/**
* The ID of the request, which is used to locate and troubleshoot issues.
*
* example:
* 765EDBDE-1686-5DBA-B76F-2E0E6E7E1B96
*/
@NameInMap("RequestId")
public String requestId;
public static BatchOperateCommonOverallConfigResponseBody build(java.util.Map map) throws Exception {
BatchOperateCommonOverallConfigResponseBody self = new BatchOperateCommonOverallConfigResponseBody();
return TeaModel.build(map, self);
}
public BatchOperateCommonOverallConfigResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy