com.aliyun.sas20181203.models.DescribeVulExportInfoRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DescribeVulExportInfoRequest extends TeaModel {
/**
* The ID of the task.
* This parameter is required.
*
* example:
* 14356
*/
@NameInMap("ExportId")
public Long exportId;
public static DescribeVulExportInfoRequest build(java.util.Map map) throws Exception {
DescribeVulExportInfoRequest self = new DescribeVulExportInfoRequest();
return TeaModel.build(map, self);
}
public DescribeVulExportInfoRequest setExportId(Long exportId) {
this.exportId = exportId;
return this;
}
public Long getExportId() {
return this.exportId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy