com.aliyun.cs20151215.models.ScanClusterVulsResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class ScanClusterVulsResponseBody extends TeaModel {
/**
* example:
* 687C5BAA-D103-4993-884B-C35E4314A1E1
*/
@NameInMap("request_id")
public String requestId;
/**
* example:
* T-xascadasd*****
*/
@NameInMap("task_id")
public String taskId;
public static ScanClusterVulsResponseBody build(java.util.Map map) throws Exception {
ScanClusterVulsResponseBody self = new ScanClusterVulsResponseBody();
return TeaModel.build(map, self);
}
public ScanClusterVulsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ScanClusterVulsResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}