com.aliyun.sas20181203.models.QueryIncidentTracingJudgeResponseBody 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 QueryIncidentTracingJudgeResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* 73563FEF-BBCB-151C-88AA-8A409CBAF0C6
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the request was successful. Valid values:
*
* - true
* - false
*
*
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
/**
* The request result.
*/
@NameInMap("TracingJudge")
public java.util.Map tracingJudge;
public static QueryIncidentTracingJudgeResponseBody build(java.util.Map map) throws Exception {
QueryIncidentTracingJudgeResponseBody self = new QueryIncidentTracingJudgeResponseBody();
return TeaModel.build(map, self);
}
public QueryIncidentTracingJudgeResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryIncidentTracingJudgeResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public QueryIncidentTracingJudgeResponseBody setTracingJudge(java.util.Map tracingJudge) {
this.tracingJudge = tracingJudge;
return this;
}
public java.util.Map getTracingJudge() {
return this.tracingJudge;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy