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