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