10 lines
235 B
Go
10 lines
235 B
Go
package response
|
|
|
|
type WxCode2SessionResp struct {
|
|
SessionKey string `json:"session_key"`
|
|
Unionid string `json:"unionid"`
|
|
Openid string `json:"openid"`
|
|
Errcode int32 `json:"errcode"`
|
|
Errmsg string `json:"errmsg"`
|
|
}
|