优化商户号参数调试接口
This commit is contained in:
parent
6ef4ff5389
commit
e3cfca5bfa
@ -49,8 +49,8 @@ func (c *Client) ComplaintUpload(req *ComplaintUploadRequest) (response *Complai
|
||||
return
|
||||
}
|
||||
|
||||
func (c *Client) ComplaintNotifyUrl(req *ComplaintNotifyUrlRequest) (response *ComplaintNotifyUrlResponse, err error) {
|
||||
response = CreateComplaintNotifyUrlResponse()
|
||||
func (c *Client) ComplaintNotifyUrl(req *merchantConfigDebugRequest) (response *merchantConfigDebugResponse, err error) {
|
||||
response = CreateMerchantConfigDebugResponse()
|
||||
err = c.DoAction(req, response)
|
||||
return
|
||||
}
|
||||
|
@ -16,8 +16,8 @@ type merchantConfigDebugResponse struct {
|
||||
Msg string `json:"msg"`
|
||||
}
|
||||
|
||||
func CreateMerchantConfigDebugRequest() (req *ComplaintNotifyUrlRequest) {
|
||||
req = &ComplaintNotifyUrlRequest{
|
||||
func CreateMerchantConfigDebugRequest() (req *merchantConfigDebugRequest) {
|
||||
req = &merchantConfigDebugRequest{
|
||||
RpcRequest: &requests.RpcRequest{},
|
||||
}
|
||||
req.InitWithApiInfo(HOST, VERSION, "/api/complaint/configDebug")
|
||||
@ -25,8 +25,8 @@ func CreateMerchantConfigDebugRequest() (req *ComplaintNotifyUrlRequest) {
|
||||
return
|
||||
}
|
||||
|
||||
func CreateMerchantConfigDebugResponse() (response *ComplaintNotifyUrlResponse) {
|
||||
response = &ComplaintNotifyUrlResponse{
|
||||
func CreateMerchantConfigDebugResponse() (response *merchantConfigDebugResponse) {
|
||||
response = &merchantConfigDebugResponse{
|
||||
BaseResponse: &responses.BaseResponse{},
|
||||
}
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user