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

com.antgroup.antchain.openapi.twc.models.RefinanceOrderInfoResponse 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 RefinanceOrderInfoResponse extends TeaModel {
    // 订单id
    @NameInMap("order_id")
    @Validation(required = true)
    public String orderId;

    // 合约id
    @NameInMap("application_id")
    @Validation(required = true)
    public String applicationId;

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy