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

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

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 订单id 长度大于6,小于50
    @NameInMap("order_id")
    @Validation(required = true, minLength = 6)
    public String orderId;

    // 订单所属商户的社会信用代码
    @NameInMap("merchant_id")
    @Validation(required = true, minLength = 1)
    public String merchantId;

    // 提交预审的资方的社会信用代码
    @NameInMap("fund_id")
    @Validation(required = true, minLength = 1)
    public String fundId;

    // 透传到资方,不做格式限制
    @NameInMap("transparent_info")
    @Validation(maxLength = 1000)
    public String transparentInfo;

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

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

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

    public ApplyTradeFinanceprecheckRequest setOrderId(String orderId) {
        this.orderId = orderId;
        return this;
    }
    public String getOrderId() {
        return this.orderId;
    }

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

    public ApplyTradeFinanceprecheckRequest setFundId(String fundId) {
        this.fundId = fundId;
        return this;
    }
    public String getFundId() {
        return this.fundId;
    }

    public ApplyTradeFinanceprecheckRequest setTransparentInfo(String transparentInfo) {
        this.transparentInfo = transparentInfo;
        return this;
    }
    public String getTransparentInfo() {
        return this.transparentInfo;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy