com.alipay.api.response.AlipayMicropayOrderDirectPayResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.SinglePayDetail;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.micropay.order.direct.pay response.
*
* @author auto create
* @since 1.0, 2017-02-15 16:27:00
*/
public class AlipayMicropayOrderDirectPayResponse extends AlipayResponse {
private static final long serialVersionUID = 6422337656262936121L;
/**
* 单笔直接支付返回结果
*/
@ApiField("single_pay_detail")
private SinglePayDetail singlePayDetail;
public void setSinglePayDetail(SinglePayDetail singlePayDetail) {
this.singlePayDetail = singlePayDetail;
}
public SinglePayDetail getSinglePayDetail( ) {
return this.singlePayDetail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy