Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- package md
-
- const WxOfficialAccountRequestBaseUrl = "https://api.weixin.qq.com/"
-
- type CreateTokenResp struct {
- AccessToken string `json:"access_token"`
- ExpiresIn int64 `json:"expires_in"`
- }
-
- type CreateQrcodeResp struct {
- Ticket string `json:"ticket"`
- ExpireSeconds int64 `json:"expire_seconds"`
- Url string `json:"url"`
- }
-
- type SendRedPackageResp struct {
- ReturnCode string `json:"return_code"`
- ReturnMsg string `json:"return_msg"`
- ResultCode string `json:"result_code"`
- ErrCode string `json:"err_code"`
- ErrCodeDes string `json:"err_code_des"`
- MchBilNo string `json:"mch_billno"`
- MchId string `json:"mch_id"`
- WxAppId string `json:"wxappid"`
- ReOpenId string `json:"re_openid"`
- TotalAmount string `json:"total_amount"`
- }
|