com.antgroup.antchain.openapi.ato.models.RiskStrategy 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 RiskStrategy extends TeaModel {
// 策略ID
@NameInMap("id")
@Validation(required = true)
public String id;
// 策略名称
@NameInMap("name")
@Validation(required = true)
public String name;
// 策略决策结果
@NameInMap("decision")
@Validation(required = true)
public String decision;
// 风险场景编码
@NameInMap("scene_code")
@Validation(required = true)
public String sceneCode;
public static RiskStrategy build(java.util.Map map) throws Exception {
RiskStrategy self = new RiskStrategy();
return TeaModel.build(map, self);
}
public RiskStrategy setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public RiskStrategy setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public RiskStrategy setDecision(String decision) {
this.decision = decision;
return this;
}
public String getDecision() {
return this.decision;
}
public RiskStrategy setSceneCode(String sceneCode) {
this.sceneCode = sceneCode;
return this;
}
public String getSceneCode() {
return this.sceneCode;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy