com.antgroup.antchain.openapi.riskplus.models.CustomerUmktInfoModel 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 CustomerUmktInfoModel extends TeaModel {
// 基本圈客结果信息
@NameInMap("base_info")
@Validation(required = true)
public BaseCustomerUmktInfoModel baseInfo;
// 额外的营销分结果
@NameInMap("umkt_out_put_info")
public String umktOutPutInfo;
public static CustomerUmktInfoModel build(java.util.Map map) throws Exception {
CustomerUmktInfoModel self = new CustomerUmktInfoModel();
return TeaModel.build(map, self);
}
public CustomerUmktInfoModel setBaseInfo(BaseCustomerUmktInfoModel baseInfo) {
this.baseInfo = baseInfo;
return this;
}
public BaseCustomerUmktInfoModel getBaseInfo() {
return this.baseInfo;
}
public CustomerUmktInfoModel setUmktOutPutInfo(String umktOutPutInfo) {
this.umktOutPutInfo = umktOutPutInfo;
return this;
}
public String getUmktOutPutInfo() {
return this.umktOutPutInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy