You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pintoto/api.user.info.go

40 lines
1.3 KiB

package pintoto
import (
"context"
"encoding/json"
"go.dtapp.net/gorequest"
)
type ApiUserInfoResponse struct {
Success bool `json:"success"`
Message string `json:"message"`
Data struct {
Nickname string `json:"nickname"` // 用户昵称
Mobile int64 `json:"mobile"` // 注册号码
Balance float64 `json:"balance"` // 账户余额
FreezeAmount float64 `json:"freeze_amount"` // 冻结金额
} `json:"data"`
Code int `json:"code"`
}
type ApiUserInfoResult struct {
Result ApiUserInfoResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
func newApiUserInfoResult(result ApiUserInfoResponse, body []byte, http gorequest.Response, err error) *ApiUserInfoResult {
return &ApiUserInfoResult{Result: result, Body: body, Http: http, Err: err}
}
// ApiUserInfo 账号信息查询 https://www.showdoc.com.cn/1154868044931571/6269224958928211
func (c *Client) ApiUserInfo(ctx context.Context) *ApiUserInfoResult {
request, err := c.request(ctx, apiUrl+"/api/user/info", map[string]interface{}{})
// 定义
var response ApiUserInfoResponse
err = json.Unmarshal(request.ResponseBody, &response)
return newApiUserInfoResult(response, request.ResponseBody, request, err)
}