com.antgroup.antchain.openapi.riskplus.models.DfSceneInfos 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 DfSceneInfos extends TeaModel {
// scene_code
@NameInMap("scene_code")
@Validation(required = true)
public String sceneCode;
// 拒绝
@NameInMap("scene_decision")
@Validation(required = true)
public String sceneDecision;
// decision_flow
@NameInMap("decision_flow")
@Validation(required = true)
public DecisionFlow decisionFlow;
public static DfSceneInfos build(java.util.Map map) throws Exception {
DfSceneInfos self = new DfSceneInfos();
return TeaModel.build(map, self);
}
public DfSceneInfos setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
return this;
}
public String getSceneCode() {
return this.sceneCode;
}
public DfSceneInfos setSceneDecision(String sceneDecision) {
this.sceneDecision = sceneDecision;
return this;
}
public String getSceneDecision() {
return this.sceneDecision;
}
public DfSceneInfos setDecisionFlow(DecisionFlow decisionFlow) {
this.decisionFlow = decisionFlow;
return this;
}
public DecisionFlow getDecisionFlow() {
return this.decisionFlow;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy