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

io.gitee.putaoo.easypay.domain.wx.response.WxPaySandboxKeyResponse Maven / Gradle / Ivy

package io.gitee.putaoo.easypay.domain.wx.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

@Data
public class WxPaySandboxKeyResponse {

    @JsonProperty(value = "return_code")
    private String returnCode;

    @JsonProperty(value = "return_msg", required = false)
    private String returnMsg;

    @JsonProperty(value = "mch_id", required = false)
    private String mchId;

    @JsonProperty(value = "sandbox_signkey", required = false)
    private String sandboxSignkey;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy