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

com.antgroup.antchain.openapi.riskplus.models.UpdateCustomerRelationResponseData 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 UpdateCustomerRelationResponseData extends TeaModel {
    // id
    @NameInMap("id")
    public Long id;

    // 渠道编码
    @NameInMap("channel_code")
    public String channelCode;

    // 渠道id
    @NameInMap("channel_no")
    public String channelNo;

    // 客户号
    @NameInMap("customer_no")
    public String customerNo;

    // 创建时间
    @NameInMap("create_time")
    @Validation(pattern = "\\d{4}[-]\\d{1,2}[-]\\d{1,2}[T]\\d{2}:\\d{2}:\\d{2}([Z]|([\\.]\\d{1,9})?[\\+]\\d{2}[\\:]?\\d{2})")
    public String createTime;

    // 更新时间
    @NameInMap("update_time")
    @Validation(pattern = "\\d{4}[-]\\d{1,2}[-]\\d{1,2}[T]\\d{2}:\\d{2}:\\d{2}([Z]|([\\.]\\d{1,9})?[\\+]\\d{2}[\\:]?\\d{2})")
    public String updateTime;

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

    public UpdateCustomerRelationResponseData setId(Long id) {
        this.id = id;
        return this;
    }
    public Long getId() {
        return this.id;
    }

    public UpdateCustomerRelationResponseData setChannelCode(String channelCode) {
        this.channelCode = channelCode;
        return this;
    }
    public String getChannelCode() {
        return this.channelCode;
    }

    public UpdateCustomerRelationResponseData setChannelNo(String channelNo) {
        this.channelNo = channelNo;
        return this;
    }
    public String getChannelNo() {
        return this.channelNo;
    }

    public UpdateCustomerRelationResponseData setCustomerNo(String customerNo) {
        this.customerNo = customerNo;
        return this;
    }
    public String getCustomerNo() {
        return this.customerNo;
    }

    public UpdateCustomerRelationResponseData setCreateTime(String createTime) {
        this.createTime = createTime;
        return this;
    }
    public String getCreateTime() {
        return this.createTime;
    }

    public UpdateCustomerRelationResponseData setUpdateTime(String updateTime) {
        this.updateTime = updateTime;
        return this;
    }
    public String getUpdateTime() {
        return this.updateTime;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy