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

com.antgroup.antchain.openapi.riskplus.models.RtopRegionalDistribution 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 RtopRegionalDistribution extends TeaModel {
    // 统计值
    @NameInMap("count")
    @Validation(required = true)
    public Long count;

    // 地区
    @NameInMap("place")
    @Validation(required = true)
    public String place;

    // 当前地区的涉众风险类型分布,即非法集资有多少企业,传销有多少企业
    @NameInMap("type_distribution")
    public java.util.List typeDistribution;

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

    public RtopRegionalDistribution setCount(Long count) {
        this.count = count;
        return this;
    }
    public Long getCount() {
        return this.count;
    }

    public RtopRegionalDistribution setPlace(String place) {
        this.place = place;
        return this;
    }
    public String getPlace() {
        return this.place;
    }

    public RtopRegionalDistribution setTypeDistribution(java.util.List typeDistribution) {
        this.typeDistribution = typeDistribution;
        return this;
    }
    public java.util.List getTypeDistribution() {
        return this.typeDistribution;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy