com.antgroup.antchain.openapi.riskplus.models.RtopGenderDistribution 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 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