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

com.antgroup.antchain.openapi.riskplus.models.SceneInfos 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 SceneInfos extends TeaModel {
    // 决策结果
    @NameInMap("decision")
    @Validation(required = true)
    public String decision;

    // 场景code
    @NameInMap("scene_code")
    @Validation(required = true)
    public String sceneCode;

    public static SceneInfos build(java.util.Map map) throws Exception {
        SceneInfos self = new SceneInfos();
        return TeaModel.build(map, self);
    }

    public SceneInfos setDecision(String decision) {
        this.decision = decision;
        return this;
    }
    public String getDecision() {
        return this.decision;
    }

    public SceneInfos setSceneCode(String sceneCode) {
        this.sceneCode = sceneCode;
        return this;
    }
    public String getSceneCode() {
        return this.sceneCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy