123456789101112131415161718192021 |
- package pdd
- type PddDdkGoodsPidQueryRequest struct {
- PddDdkBase
- }
- type PddDdkGoodsPidQueryResponse struct {
- PIDQueryResponse PIDQueryResponse `json:"p_id_query_response"`
- }
- type PIDQueryList struct {
- CreateTime int `json:"create_time"`
- MediaID int `json:"media_id"`
- PidName string `json:"pid_name"`
- PID string `json:"p_id"`
- Status int `json:"status"`
- }
- type PIDQueryResponse struct {
- PIDList []PIDQueryList `json:"p_id_list"`
- TotalCount int `json:"total_count"`
- RequestID string `json:"request_id"`
- }
|