com.aliyun.sas20181203.models.UninstallRaspAttachResponseBody 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 UninstallRaspAttachResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* ADE57832-9666-511C-9A80-B87DE2E8****
*/
@NameInMap("RequestId")
public String requestId;
public static UninstallRaspAttachResponseBody build(java.util.Map map) throws Exception {
UninstallRaspAttachResponseBody self = new UninstallRaspAttachResponseBody();
return TeaModel.build(map, self);
}
public UninstallRaspAttachResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy