com.aliyun.sas20181203.models.CreateOssBucketScanTaskResponseBody 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 CreateOssBucketScanTaskResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* BBD75EC2-2F4F-5A7B-AA53-18724DC8****
*/
@NameInMap("RequestId")
public String requestId;
public static CreateOssBucketScanTaskResponseBody build(java.util.Map map) throws Exception {
CreateOssBucketScanTaskResponseBody self = new CreateOssBucketScanTaskResponseBody();
return TeaModel.build(map, self);
}
public CreateOssBucketScanTaskResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy