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

com.antgroup.antchain.openapi.ato.models.CustomerServiceInfo Maven / Gradle / Ivy

There is a newer version: 1.10.16
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.ato.models;

import com.aliyun.tea.*;

public class CustomerServiceInfo extends TeaModel {
    // 公司社会统一信息代码
    @NameInMap("merchant_id")
    public String merchantId;

    // 公司名称
    @NameInMap("merchant_name")
    public String merchantName;

    // 处理类型: 商家处理 服务商代处理
    @NameInMap("process_type")
    public String processType;

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

    public CustomerServiceInfo setMerchantId(String merchantId) {
        this.merchantId = merchantId;
        return this;
    }
    public String getMerchantId() {
        return this.merchantId;
    }

    public CustomerServiceInfo setMerchantName(String merchantName) {
        this.merchantName = merchantName;
        return this;
    }
    public String getMerchantName() {
        return this.merchantName;
    }

    public CustomerServiceInfo setProcessType(String processType) {
        this.processType = processType;
        return this;
    }
    public String getProcessType() {
        return this.processType;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy