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

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

There is a newer version: 3.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class DescribeAppVulScanCycleResponseBody extends TeaModel {
    /**
     * 

The scan cycle for application vulnerabilities.

*
*

* 1week

*

* 2weeks

*

* 3days

*/ @NameInMap("Cycle") public String cycle; /** *

The ID of the request.

*/ @NameInMap("RequestId") public String requestId; public static DescribeAppVulScanCycleResponseBody build(java.util.Map map) throws Exception { DescribeAppVulScanCycleResponseBody self = new DescribeAppVulScanCycleResponseBody(); return TeaModel.build(map, self); } public DescribeAppVulScanCycleResponseBody setCycle(String cycle) { this.cycle = cycle; return this; } public String getCycle() { return this.cycle; } public DescribeAppVulScanCycleResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy