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

com.aliyun.sas20181203.models.CheckSecurityEventIdResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class CheckSecurityEventIdResponseBody extends TeaModel {
    /**
     * 

Indicates whether the alert events are generated on the server. Valid values:

*
    *
  • true
  • *
  • false: no
  • *
* * example: *

true

*/ @NameInMap("Data") public Boolean data; /** *

The ID of the request, which is used to locate and troubleshoot issues.

* * example: *

1383B0DB-D5D6-4B0C-9E6B-75939C8E67FE

*/ @NameInMap("RequestId") public String requestId; public static CheckSecurityEventIdResponseBody build(java.util.Map map) throws Exception { CheckSecurityEventIdResponseBody self = new CheckSecurityEventIdResponseBody(); return TeaModel.build(map, self); } public CheckSecurityEventIdResponseBody setData(Boolean data) { this.data = data; return this; } public Boolean getData() { return this.data; } public CheckSecurityEventIdResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy