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

com.antgroup.antchain.openapi.riskplus.models.PushRbbCustomerCompanyinfoRequest 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 PushRbbCustomerCompanyinfoRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 企业的统一社会信用代码
    @NameInMap("uc_code")
    public String ucCode;

    // 企业名称
    @NameInMap("company_name")
    public String companyName;

    // 企业信息的类型
    @NameInMap("type")
    @Validation(required = true)
    public String type;

    // 企业信息的内容
    @NameInMap("content")
    public String content;

    // 虚拟云租户code
    @NameInMap("virtual_cloud_tenant_code")
    public String virtualCloudTenantCode;

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

    public PushRbbCustomerCompanyinfoRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public PushRbbCustomerCompanyinfoRequest setProductInstanceId(String productInstanceId) {
        this.productInstanceId = productInstanceId;
        return this;
    }
    public String getProductInstanceId() {
        return this.productInstanceId;
    }

    public PushRbbCustomerCompanyinfoRequest setUcCode(String ucCode) {
        this.ucCode = ucCode;
        return this;
    }
    public String getUcCode() {
        return this.ucCode;
    }

    public PushRbbCustomerCompanyinfoRequest setCompanyName(String companyName) {
        this.companyName = companyName;
        return this;
    }
    public String getCompanyName() {
        return this.companyName;
    }

    public PushRbbCustomerCompanyinfoRequest setType(String type) {
        this.type = type;
        return this;
    }
    public String getType() {
        return this.type;
    }

    public PushRbbCustomerCompanyinfoRequest setContent(String content) {
        this.content = content;
        return this;
    }
    public String getContent() {
        return this.content;
    }

    public PushRbbCustomerCompanyinfoRequest setVirtualCloudTenantCode(String virtualCloudTenantCode) {
        this.virtualCloudTenantCode = virtualCloudTenantCode;
        return this;
    }
    public String getVirtualCloudTenantCode() {
        return this.virtualCloudTenantCode;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy