com.alipay.api.response.KoubeiTradeOrderConsultResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The 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.DiscountDetail;
import com.alipay.api.domain.MCardDetail;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.trade.order.consult response.
*
* @author auto create
* @since 1.0, 2017-09-01 11:24:28
*/
public class KoubeiTradeOrderConsultResponse extends AlipayResponse {
private static final long serialVersionUID = 5827739756584635176L;
/**
* 用户实付金额
*/
@ApiField("buyer_pay_amount")
private String buyerPayAmount;
/**
* 优惠信息
*/
@ApiListField("discount_detail")
@ApiField("discount_detail")
private List discountDetail;
/**
* 储值卡信息
*/
@ApiField("m_card_detail")
private MCardDetail mCardDetail;
/**
* 请求中的request_id
*/
@ApiField("request_id")
private String requestId;
public void setBuyerPayAmount(String buyerPayAmount) {
this.buyerPayAmount = buyerPayAmount;
}
public String getBuyerPayAmount( ) {
return this.buyerPayAmount;
}
public void setDiscountDetail(List discountDetail) {
this.discountDetail = discountDetail;
}
public List getDiscountDetail( ) {
return this.discountDetail;
}
public void setmCardDetail(MCardDetail mCardDetail) {
this.mCardDetail = mCardDetail;
}
public MCardDetail getmCardDetail( ) {
return this.mCardDetail;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getRequestId( ) {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy