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

com.aliyun.sas20181203.models.DescribeCheckFixDetailsRequest 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 DescribeCheckFixDetailsRequest extends TeaModel {
    /**
     * 

The ID of the risk item.

*
*

> You can call the [DescribeRiskType](~~DescribeRiskType~~) operation to query the IDs of risk items.

*/ @NameInMap("CheckIds") public String checkIds; /** *

The language of the content within the request and response. Default value: **zh**. Valid values:

*
*

* **zh**: Chinese

*

* **en**: English

*/ @NameInMap("Lang") public String lang; /** *

The ID of the baseline.

*
*

> You can call the [DescribeCheckWarningSummary](~~116179~~) operation to query the IDs of baselines.

*/ @NameInMap("RiskId") public Long riskId; public static DescribeCheckFixDetailsRequest build(java.util.Map map) throws Exception { DescribeCheckFixDetailsRequest self = new DescribeCheckFixDetailsRequest(); return TeaModel.build(map, self); } public DescribeCheckFixDetailsRequest setCheckIds(String checkIds) { this.checkIds = checkIds; return this; } public String getCheckIds() { return this.checkIds; } public DescribeCheckFixDetailsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeCheckFixDetailsRequest setRiskId(Long riskId) { this.riskId = riskId; return this; } public Long getRiskId() { return this.riskId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy