9 lines
249 B
Go
9 lines
249 B
Go
|
package response
|
||
|
|
||
|
import "github.com/wechatpay-apiv3/wechatpay-go/services/payments/jsapi"
|
||
|
|
||
|
type PrepayResponse struct {
|
||
|
Resp *jsapi.PrepayWithRequestPaymentResponse `json:"resp"`
|
||
|
Result string `json:"result"`
|
||
|
}
|