com.aliyun.sddp20190103.models.CreateRuleResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sddp20190103 Show documentation
Show all versions of sddp20190103 Show documentation
Alibaba Cloud Sensitive Data Discovery and Protection (20190103) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sddp20190103.models;
import com.aliyun.tea.*;
public class CreateRuleResponseBody extends TeaModel {
/**
* The unique ID of the sensitive data detection rule.
*
* example:
* 1
*/
@NameInMap("Id")
public Integer id;
/**
* The ID of the request.
*
* example:
* 208B016D-4CB9-4A85-96A5-0B8ED1EBF271
*/
@NameInMap("RequestId")
public String requestId;
public static CreateRuleResponseBody build(java.util.Map map) throws Exception {
CreateRuleResponseBody self = new CreateRuleResponseBody();
return TeaModel.build(map, self);
}
public CreateRuleResponseBody setId(Integer id) {
this.id = id;
return this;
}
public Integer getId() {
return this.id;
}
public CreateRuleResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy