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

com.antgroup.antchain.openapi.riskplus.models.RtopAgeDistribution 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 RtopAgeDistribution extends TeaModel {
    // 年龄
    @NameInMap("age")
    @Validation(required = true)
    public String age;

    // 统计值
    @NameInMap("count")
    @Validation(required = true)
    public Integer count;

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

    public RtopAgeDistribution setAge(String age) {
        this.age = age;
        return this;
    }
    public String getAge() {
        return this.age;
    }

    public RtopAgeDistribution setCount(Integer count) {
        this.count = count;
        return this;
    }
    public Integer getCount() {
        return this.count;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy