pdd.ddk.goods.pid.query.go 562 B

123456789101112131415161718192021
  1. package pdd
  2. type PddDdkGoodsPidQueryRequest struct {
  3. PddDdkBase
  4. }
  5. type PddDdkGoodsPidQueryResponse struct {
  6. PIDQueryResponse PIDQueryResponse `json:"p_id_query_response"`
  7. }
  8. type PIDQueryList struct {
  9. CreateTime int `json:"create_time"`
  10. MediaID int `json:"media_id"`
  11. PidName string `json:"pid_name"`
  12. PID string `json:"p_id"`
  13. Status int `json:"status"`
  14. }
  15. type PIDQueryResponse struct {
  16. PIDList []PIDQueryList `json:"p_id_list"`
  17. TotalCount int `json:"total_count"`
  18. RequestID string `json:"request_id"`
  19. }