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

com.alipay.api.response.AlipayCommerceLeaseOfferQueryResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.LeasePlanOfferDTO;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.commerce.lease.offer.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-07-11 11:07:41
 */
public class AlipayCommerceLeaseOfferQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 3118245287959944161L;

	/** 
	 * 租赁商品id
	 */
	@ApiField("item_id")
	private String itemId;

	/** 
	 * 计划sku维度报价详情
	 */
	@ApiListField("plan_offer_list")
	@ApiField("lease_plan_offer_d_t_o")
	private List planOfferList;

	public void setItemId(String itemId) {
		this.itemId = itemId;
	}
	public String getItemId( ) {
		return this.itemId;
	}

	public void setPlanOfferList(List planOfferList) {
		this.planOfferList = planOfferList;
	}
	public List getPlanOfferList( ) {
		return this.planOfferList;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy