cn.com.antcloud.api.ato.v1_0.response.QueryRiskResponse Maven / Gradle / Ivy
//
// Copyright (c) 2020-present antgroup.com, https://www.antgroup.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
//
package cn.com.antcloud.api.ato.v1_0.response;
import cn.com.antcloud.api.ato.v1_0.model.RiskModel;
import cn.com.antcloud.api.ato.v1_0.model.RiskScene;
import cn.com.antcloud.api.ato.v1_0.model.RiskStrategy;
import cn.com.antcloud.api.product.AntCloudProdResponse;
import java.lang.String;
import java.util.List;
/**
* 发起风控分析,获取风险分 */
public class QueryRiskResponse extends AntCloudProdResponse {
private String securityId;
private String decision;
private List scenes;
private List strategies;
private List models;
/**
* 请求唯一ID标识,为空则是异常 */
public String getSecurityId() {
return this.securityId;
}
/**
* 请求唯一ID标识,为空则是异常 */
public void setSecurityId(String securityId) {
this.securityId = securityId;
}
/**
* 总风险决策结果,枚举值为:reject[拒绝],validate[待定],accept[通过]。 */
public String getDecision() {
return this.decision;
}
/**
* 总风险决策结果,枚举值为:reject[拒绝],validate[待定],accept[通过]。 */
public void setDecision(String decision) {
this.decision = decision;
}
/**
* 风险场景的决策结果 */
public List getScenes() {
return this.scenes;
}
/**
* 风险场景的决策结果 */
public void setScenes(List scenes) {
this.scenes = scenes;
}
/**
* 策略结果详情 */
public List getStrategies() {
return this.strategies;
}
/**
* 策略结果详情 */
public void setStrategies(List strategies) {
this.strategies = strategies;
}
/**
* 模型结果详情 */
public List getModels() {
return this.models;
}
/**
* 模型结果详情 */
public void setModels(List models) {
this.models = models;
}
}