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

com.antgroup.antchain.openapi.riskplus.models.CustomerUmktInfoModel 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 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 - 2024 Weber Informatics LLC | Privacy Policy