- package wxpay
- type WxPayRequestData struct {
- Description string `json:"description"`
- Amount int64 `json:"amount"`
- }
- type WxPayResponseData struct {
- PaySign string `json:"pay_sign"`
- Package string `json:"package"`
- TimeStamp string `json:"time_stamp"`
- NonceStr string `json:"nonce_str"`
- }
- type WxPayNotifyData struct {
- }
|