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.
go-library/service/sendcloud/apiv2.userinfo.get.go

70 lines
3.4 KiB

2 years ago
package sendcloud
2 years ago
import (
1 year ago
"context"
1 year ago
"github.com/dtapps/go-library/utils/gojson"
2 years ago
"github.com/dtapps/go-library/utils/gorequest"
2 years ago
"net/http"
2 years ago
)
2 years ago
type ApiV2UserinfoGetResponse struct {
Code string `json:"code"`
Message string `json:"message"`
Data struct {
2 years ago
ID int64 `json:"id"` // 订单号
ProductID int `json:"product_id"` // 商品编号
ProductName string `json:"product_name"` // 商品名称
ProductType int `json:"product_type"` // 商品类型1充值2卡密3卡券4人工
ProductPrice string `json:"product_price"` // 售价
Quantity int `json:"quantity"` // 购买数量
TotalPrice string `json:"total_price"` // 总支付价格
RefundedAmount float64 `json:"refunded_amount"` // 已退款金额
BuyerCustomerID int `json:"buyer_customer_id"` // 买家编号
BuyerCustomerName string `json:"buyer_customer_name"` // 买家名称
SellerCustomerID int `json:"seller_customer_id"` // 卖家编号
SellerCustomerName string `json:"seller_customer_name"` // 卖家名称
State int `json:"state"` // 订单状态100等待发货101正在充值200交易成功500交易失败501未知状态
CreatedAt string `json:"created_at"` // 下单时间
RechargeAccount string `json:"recharge_account"` // 充值账号
ProgressInit int `json:"progress_init"` // 充值进度:初始值
ProgressNow int `json:"progress_now"` // 充值进度:现在值
ProgressTarget int `json:"progress_target"` // 充值进度:目标值
RechargeInfo string `json:"recharge_info"` // 返回信息
RechargeUrl string `json:"recharge_url"` // 卡密充值网址
Cards []struct {
No string `json:"no"`
Password string `json:"password"`
2 years ago
} `json:"cards"` //【卡密类订单】卡密
2 years ago
RechargeParams string `json:"recharge_params"` //【充值类订单】
OuterApiV2UserinfoGetID string `json:"outer_ApiV2UserinfoGet_id,omitempty"` // 外部订单号
} `json:"data"`
}
2 years ago
type ApiV2UserinfoGetResult struct {
Result ApiV2UserinfoGetResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
2 years ago
Err error // 错误
2 years ago
}
func newApiV2UserinfoGetResult(result ApiV2UserinfoGetResponse, body []byte, http gorequest.Response, err error) *ApiV2UserinfoGetResult {
return &ApiV2UserinfoGetResult{Result: result, Body: body, Http: http, Err: err}
2 years ago
}
2 years ago
// ApiV2UserinfoGet 获取单个订单信息。
// 仅能获取自己购买的订单。
2 years ago
// http://doc.cqmeihu.cn/sales/ApiV2UserinfoGet-info.html
1 year ago
func (c *Client) ApiV2UserinfoGet(ctx context.Context) *ApiV2UserinfoGetResult {
// 参数
param := gorequest.NewParams()
param.Set("apiUser", c.GetApiUser())
param.Set("apiKey", c.GetApiKey())
params := gorequest.NewParamsWith(param)
// 请求
1 year ago
request, err := c.request(ctx, apiUrl+"/apiv2/userinfo/get", params, http.MethodGet)
2 years ago
// 定义
2 years ago
var response ApiV2UserinfoGetResponse
1 year ago
err = gojson.Unmarshal(request.ResponseBody, &response)
return newApiV2UserinfoGetResult(response, request.ResponseBody, request, err)
}