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

com.antgroup.antchain.openapi.twc.models.CreateLeaseAsyncauditRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CreateLeaseAsyncauditRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    @NameInMap("product_instance_id")
    public String productInstanceId;

    // 融资租赁业务id,由资方控制台创建返回
    @NameInMap("application_id")
    public String applicationId;

    // 融资机构审核批次
    @NameInMap("batch_index")
    public String batchIndex;

    // 当前订单处于本批次中的index
    @NameInMap("current_audit_index")
    public Long currentAuditIndex;

    // 融资租赁额外字段
    @NameInMap("extra_info")
    public String extraInfo;

    // 租赁服务平台ID 长度不可超过50
    @NameInMap("lease_id")
    @Validation(required = true, maxLength = 50)
    public String leaseId;

    // 融资机构审核状态,0.审核中1.审核失败2.审核成功
    @NameInMap("manual_audit")
    @Validation(required = true)
    public Long manualAudit;

    // 融资结构审核说明,非必填,审核失败必填失败原因
    @NameInMap("manual_audit_comments")
    public String manualAuditComments;

    // 订单id 长度不可超过50
    @NameInMap("order_id")
    @Validation(required = true, maxLength = 50)
    public String orderId;

    // 额外通知第三方,如果需要通知相关方外的第三方,需要在此设置关联方的租户id,若不设置则只通知资方
    @NameInMap("related_notify")
    public java.util.List relatedNotify;

    // 总审核的个数
    @NameInMap("total_audit_number")
    public Long totalAuditNumber;

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

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

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

    public CreateLeaseAsyncauditRequest setApplicationId(String applicationId) {
        this.applicationId = applicationId;
        return this;
    }
    public String getApplicationId() {
        return this.applicationId;
    }

    public CreateLeaseAsyncauditRequest setBatchIndex(String batchIndex) {
        this.batchIndex = batchIndex;
        return this;
    }
    public String getBatchIndex() {
        return this.batchIndex;
    }

    public CreateLeaseAsyncauditRequest setCurrentAuditIndex(Long currentAuditIndex) {
        this.currentAuditIndex = currentAuditIndex;
        return this;
    }
    public Long getCurrentAuditIndex() {
        return this.currentAuditIndex;
    }

    public CreateLeaseAsyncauditRequest setExtraInfo(String extraInfo) {
        this.extraInfo = extraInfo;
        return this;
    }
    public String getExtraInfo() {
        return this.extraInfo;
    }

    public CreateLeaseAsyncauditRequest setLeaseId(String leaseId) {
        this.leaseId = leaseId;
        return this;
    }
    public String getLeaseId() {
        return this.leaseId;
    }

    public CreateLeaseAsyncauditRequest setManualAudit(Long manualAudit) {
        this.manualAudit = manualAudit;
        return this;
    }
    public Long getManualAudit() {
        return this.manualAudit;
    }

    public CreateLeaseAsyncauditRequest setManualAuditComments(String manualAuditComments) {
        this.manualAuditComments = manualAuditComments;
        return this;
    }
    public String getManualAuditComments() {
        return this.manualAuditComments;
    }

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

    public CreateLeaseAsyncauditRequest setRelatedNotify(java.util.List relatedNotify) {
        this.relatedNotify = relatedNotify;
        return this;
    }
    public java.util.List getRelatedNotify() {
        return this.relatedNotify;
    }

    public CreateLeaseAsyncauditRequest setTotalAuditNumber(Long totalAuditNumber) {
        this.totalAuditNumber = totalAuditNumber;
        return this;
    }
    public Long getTotalAuditNumber() {
        return this.totalAuditNumber;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy