com.alipay.api.response.AlipayCommerceRentOrderInvestQueryResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.RentInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.rent.order.invest.query response.
*
* @author auto create
* @since 1.0, 2024-11-27 09:12:20
*/
public class AlipayCommerceRentOrderInvestQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3687753156378779639L;
/**
* 租赁订单详情,包括业务订单详情、分期计划、分账计划、租赁订单信息
*/
@ApiField("rent_info")
private RentInfo rentInfo;
public void setRentInfo(RentInfo rentInfo) {
this.rentInfo = rentInfo;
}
public RentInfo getRentInfo( ) {
return this.rentInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy