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.
pinduoduo/pdd.ddk.order.detail.get.go

82 lines
3.5 KiB

package pinduoduo
import (
"context"
"encoding/json"
"go.dtapp.net/gorequest"
)
type OrderDetailGetResponse struct {
OrderDetailResponse struct {
SepMarketFee int `json:"sep_market_fee"`
GoodsPrice int `json:"goods_price"`
SepDuoId int `json:"sep_duo_id"`
Pid string `json:"pid"`
PromotionRate int `json:"promotion_rate"`
CpsSign string `json:"cps_sign"`
Type int `json:"type"`
SubsidyDuoAmountLevel int `json:"subsidy_duo_amount_level"`
OrderStatus int `json:"order_status"`
CatIds []int `json:"cat_ids"`
OrderCreateTime int64 `json:"order_create_time"`
IsDirect int `json:"is_direct"`
OrderGroupSuccessTime int `json:"order_group_success_time"`
MallId int `json:"mall_id"`
OrderAmount int64 `json:"order_amount"`
PriceCompareStatus int `json:"price_compare_status"`
MallName string `json:"mall_name"`
OrderModifyAt int `json:"order_modify_at"`
AuthDuoId int `json:"auth_duo_id"`
CpaNew int `json:"cpa_new"`
GoodsName string `json:"goods_name"`
BatchNo string `json:"batch_no"`
RedPacketType int `json:"red_packet_type"`
UrlLastGenerateTime int `json:"url_last_generate_time"`
GoodsQuantity int `json:"goods_quantity"`
GoodsId int64 `json:"goods_id"`
SepParameters string `json:"sep_parameters"`
SepRate int `json:"sep_rate"`
SubsidyType int `json:"subsidy_type"`
ShareRate int `json:"share_rate"`
CustomParameters string `json:"custom_parameters"`
GoodsThumbnailUrl string `json:"goods_thumbnail_url"`
PromotionAmount int64 `json:"promotion_amount"`
OrderPayTime int `json:"order_pay_time"`
GroupId int64 `json:"group_id"`
SepPid string `json:"sep_pid"`
ReturnStatus int `json:"return_status"`
OrderStatusDesc string `json:"order_status_desc"`
ShareAmount int `json:"share_amount"`
GoodsCategoryName string `json:"goods_category_name"`
RequestId string `json:"request_id"`
GoodsSign string `json:"goods_sign"`
OrderSn string `json:"order_sn"`
ZsDuoId int `json:"zs_duo_id"`
} `json:"order_detail_response"`
}
type OrderDetailGetResult struct {
Result OrderDetailGetResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
Err error // 错误
}
func newOrderDetailGetResult(result OrderDetailGetResponse, body []byte, http gorequest.Response, err error) *OrderDetailGetResult {
return &OrderDetailGetResult{Result: result, Body: body, Http: http, Err: err}
}
// OrderDetailGet 多多进宝商品查询 https://jinbao.pinduoduo.com/third-party/api-detail?apiName=pdd.ddk.order.detail.get
func (c *Client) OrderDetailGet(ctx context.Context, orderSn string) *OrderDetailGetResult {
// 参数
param := NewParams()
param.Set("order_sn", orderSn)
params := NewParamsWithType("pdd.ddk.order.detail.get", param)
// 请求
request, err := c.request(ctx, params)
// 定义
var response OrderDetailGetResponse
err = json.Unmarshal(request.ResponseBody, &response)
return newOrderDetailGetResult(response, request.ResponseBody, request, err)
}