com.antgroup.antchain.openapi.riskplus.models.RtopCompanyRiskFactor 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 RtopCompanyRiskFactor extends TeaModel {
// 维度名称
@NameInMap("name")
public String name;
// 维度分数
@NameInMap("score")
public Long score;
public static RtopCompanyRiskFactor build(java.util.Map map) throws Exception {
RtopCompanyRiskFactor self = new RtopCompanyRiskFactor();
return TeaModel.build(map, self);
}
public RtopCompanyRiskFactor setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public RtopCompanyRiskFactor setScore(Long score) {
this.score = score;
return this;
}
public Long getScore() {
return this.score;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy