com.antgroup.antchain.openapi.riskplus.models.ModelDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class ModelDetails extends TeaModel {
// 风险场景编码
@NameInMap("scene_code")
@Validation(required = true)
public String sceneCode;
// 该风险场景的风险分值
//
@NameInMap("score")
@Validation(required = true)
public String score;
public static ModelDetails build(java.util.Map map) throws Exception {
ModelDetails self = new ModelDetails();
return TeaModel.build(map, self);
}
public ModelDetails setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
return this;
}
public String getSceneCode() {
return this.sceneCode;
}
public ModelDetails setScore(String score) {
this.score = score;
return this;
}
public String getScore() {
return this.score;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy