com.antgroup.antchain.openapi.riskplus.models.CustomerDetail Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class CustomerDetail extends TeaModel {
// 用户标识
@NameInMap("customer_key")
@Validation(required = true)
public String customerKey;
// 渠道参数
@NameInMap("channel_params")
@Validation(required = true)
public String channelParams;
// 用户透传字段
@NameInMap("ext_info")
@Validation(required = true)
public String extInfo;
public static CustomerDetail build(java.util.Map map) throws Exception {
CustomerDetail self = new CustomerDetail();
return TeaModel.build(map, self);
}
public CustomerDetail setCustomerKey(String customerKey) {
this.customerKey = customerKey;
return this;
}
public String getCustomerKey() {
return this.customerKey;
}
public CustomerDetail setChannelParams(String channelParams) {
this.channelParams = channelParams;
return this;
}
public String getChannelParams() {
return this.channelParams;
}
public CustomerDetail setExtInfo(String extInfo) {
this.extInfo = extInfo;
return this;
}
public String getExtInfo() {
return this.extInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy