pdd.ddk.order.list.increment.get.go 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package pdd
  2. type PddDdkOrderListIncrementGetRequest struct {
  3. PddDdkBase
  4. EndUpdateTime string `json:"end_update_time"` //
  5. StartUpdateTime string `json:"start_update_time"`
  6. Page string `json:"page"` //页码
  7. PageSize string `json:"page_size"`
  8. }
  9. type DdkOrderListRequest struct {
  10. }
  11. type PddDdkOrderListIncrementGetResponse struct {
  12. OrderListGetResponse OrderListGetResponse `json:"order_list_get_response"`
  13. }
  14. type OrderListGetResponse struct {
  15. TotalCount int `json:"total_count"`
  16. OrderList []OrderList `json:"order_list"`
  17. RequestID string `json:"request_id"`
  18. }
  19. type OrderList struct {
  20. ActivityTags []int `json:"activity_tags"`
  21. AuthDuoID int `json:"auth_duo_id"`
  22. BatchNo string `json:"batch_no"`
  23. CatIds []int `json:"cat_ids"`
  24. CpaNew int `json:"cpa_new"`
  25. CpsSign string `json:"cps_sign"`
  26. CustomParameters string `json:"custom_parameters"`
  27. FailReason string `json:"fail_reason"`
  28. GoodsID int64 `json:"goods_id"`
  29. GoodsName string `json:"goods_name"`
  30. GoodsPrice int `json:"goods_price"`
  31. GoodsQuantity int `json:"goods_quantity"`
  32. GoodsSign string `json:"goods_sign"`
  33. GoodsThumbnailURL string `json:"goods_thumbnail_url"`
  34. GroupID int64 `json:"group_id"`
  35. IsDirect int `json:"is_direct"`
  36. MallID int `json:"mall_id"`
  37. OrderAmount int `json:"order_amount"`
  38. OrderCreateTime int `json:"order_create_time"`
  39. OrderGroupSuccessTime int64 `json:"order_group_success_time"`
  40. OrderID string `json:"order_id"`
  41. OrderModifyAt int `json:"order_modify_at"`
  42. OrderPayTime int `json:"order_pay_time"`
  43. OrderReceiveTime int `json:"order_receive_time"`
  44. OrderSettleTime int `json:"order_settle_time"`
  45. OrderSn string `json:"order_sn"`
  46. OrderStatus int `json:"order_status"`
  47. OrderStatusDesc string `json:"order_status_desc"`
  48. OrderVerifyTime int `json:"order_verify_time"`
  49. PID string `json:"p_id"`
  50. PointTime int `json:"point_time"`
  51. PriceCompareStatus int `json:"price_compare_status"`
  52. PromotionAmount int `json:"promotion_amount"`
  53. PromotionRate int `json:"promotion_rate"`
  54. ReturnStatus int `json:"return_status"`
  55. SepDuoID int `json:"sep_duo_id"`
  56. SepMarketFee int `json:"sep_market_fee"`
  57. SepParameters string `json:"sep_parameters"`
  58. SepPid string `json:"sep_pid"`
  59. SepRate int `json:"sep_rate"`
  60. ShareAmount int `json:"share_amount"`
  61. ShareRate int `json:"share_rate"`
  62. SubsidyAmount int `json:"subsidy_amount"`
  63. SubsidyDuoAmountLevel int `json:"subsidy_duo_amount_level"`
  64. SubsidyDuoAmountTenMillion int `json:"subsidy_duo_amount_ten_million"`
  65. SubsidyType int `json:"subsidy_type"`
  66. Type int `json:"type"`
  67. URLLastGenerateTime int `json:"url_last_generate_time"`
  68. ZsDuoID int `json:"zs_duo_id"`
  69. }