All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sddp20190103.models.CreateRuleResponseBody Maven / Gradle / Ivy

Go to download

Alibaba Cloud Sensitive Data Discovery and Protection (20190103) SDK for Java

There is a newer version: 1.4.1
Show newest version
// 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