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

com.antgroup.antchain.openapi.riskplus.models.CustomerUmktInfosModel 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 CustomerUmktInfosModel extends TeaModel {
    // 归属用户的混合营销决策结果
    @NameInMap("umkt_results")
    @Validation(required = true)
    public java.util.List umktResults;

    // 用户凭证
    @NameInMap("customer_key")
    @Validation(required = true)
    public String customerKey;

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

    public CustomerUmktInfosModel setUmktResults(java.util.List umktResults) {
        this.umktResults = umktResults;
        return this;
    }
    public java.util.List getUmktResults() {
        return this.umktResults;
    }

    public CustomerUmktInfosModel setCustomerKey(String customerKey) {
        this.customerKey = customerKey;
        return this;
    }
    public String getCustomerKey() {
        return this.customerKey;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy