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

com.riversoft.weixin.pay.payment.wrapper.UnifiedOrderResponseWrapper 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.UnifiedOrderResponse;

/**
 * @author borball on 1/13/2017.
 */
public class UnifiedOrderResponseWrapper extends BaseSettings {
    @JsonUnwrapped
    private UnifiedOrderResponse response;

    public UnifiedOrderResponse getResponse() {
        return response;
    }

    public void setResponse(UnifiedOrderResponse response) {
        this.response = response;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy