com.riversoft.weixin.pay.payment.wrapper.RefundResponseWrapper Maven / Gradle / Ivy
The newest version!
package com.riversoft.weixin.pay.payment.wrapper;
import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.riversoft.weixin.pay.payment.bean.RefundResponse;
/**
* @author borball on 1/13/2017.
*/
public class RefundResponseWrapper extends BaseSettings {
@JsonUnwrapped
private RefundResponse response;
public RefundResponse getResponse() {
return response;
}
public void setResponse(RefundResponse response) {
this.response = response;
}
}