All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.antgroup.antchain.openapi.riskplus.models.DfSceneInfos Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
// 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 - 2024 Weber Informatics LLC | Privacy Policy