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

com.antgroup.antchain.openapi.riskplus.models.BaseCustomerUmktInfoModel 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 BaseCustomerUmktInfoModel extends TeaModel {
    // 用户凭证
    @NameInMap("customer_key")
    public String customerKey;

    // 输入模板
    @NameInMap("query_template")
    public String queryTemplate;

    // 实时营销结果
    @NameInMap("umkt_result")
    public Long umktResult;

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

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

    public BaseCustomerUmktInfoModel setQueryTemplate(String queryTemplate) {
        this.queryTemplate = queryTemplate;
        return this;
    }
    public String getQueryTemplate() {
        return this.queryTemplate;
    }

    public BaseCustomerUmktInfoModel setUmktResult(Long umktResult) {
        this.umktResult = umktResult;
        return this;
    }
    public Long getUmktResult() {
        return this.umktResult;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy