com.antgroup.antchain.openapi.riskplus.models.CustomRelationStatus 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 CustomRelationStatus extends TeaModel {
// 是否联登
@NameInMap("reg_flag")
public Boolean regFlag;
public static CustomRelationStatus build(java.util.Map map) throws Exception {
CustomRelationStatus self = new CustomRelationStatus();
return TeaModel.build(map, self);
}
public CustomRelationStatus setRegFlag(Boolean regFlag) {
this.regFlag = regFlag;
return this;
}
public Boolean getRegFlag() {
return this.regFlag;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy