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

com.antgroup.antchain.openapi.riskplus.models.RtopCompanyRiskFactor 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 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 - 2024 Weber Informatics LLC | Privacy Policy