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

cn.jsbintask.wxpay.response.WxPaySandBoxSignKeyResponse Maven / Gradle / Ivy

The newest version!
package cn.jsbintask.wxpay.response;

import cn.jsbintask.wxpay.request.WxPaySandBoxSignKeyRequest;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.ToString;

/**
 * @author [email protected]
 * @date 2019/9/6 14:41
 */
@EqualsAndHashCode(callSuper = true)
@Data
@JacksonXmlRootElement(localName = "xml")
@ToString(callSuper = true)
public class WxPaySandBoxSignKeyResponse extends WxPayResponse {
    private String sandboxSignkey;

    @Override
    public boolean needCheckSign() {
        return false;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy