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

com.antgroup.antchain.openapi.riskplus.models.RtopGenderDistribution Maven / Gradle / Ivy

There is a newer version: 1.22.4
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 RtopGenderDistribution extends TeaModel {
    // 统计值
    @NameInMap("count")
    @Validation(required = true)
    public Integer count;

    // 性别
    @NameInMap("gender")
    @Validation(required = true)
    public String gender;

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

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

    public RtopGenderDistribution setGender(String gender) {
        this.gender = gender;
        return this;
    }
    public String getGender() {
        return this.gender;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy