package pdd type WxDdkGoodsPromotionUrlGenerateRequest struct { PId string `json:"p_id"` SearchId string `json:"search_id"` GoodsSignList []string `json:"goods_sign_list"` } //type AutoGenerated struct { // PID string `json:"p_id"` // SearchID string `json:"search_id"` // GoodsSignList []string `json:"goods_sign_list"` //} type PddDdkGoodsPromotionUrlGenerateRequest struct { PddDdkBase PId string `json:"p_id"` SearchId string `json:"search_id"` GoodsSignList string `json:"goods_sign_list"` } type PddDdkGoodsPromotionUrlGenerateResponse struct { GoodsPromotionURLGenerateResponse GoodsPromotionURLGenerateResponse `json:"goods_promotion_url_generate_response"` } type GoodsPromotionURLList struct { MobileURL string `json:"mobile_url"` MobileShortURL string `json:"mobile_short_url"` WeAppWebViewURL string `json:"we_app_web_view_url"` URL string `json:"url"` ShortURL string `json:"short_url"` WeAppWebViewShortURL string `json:"we_app_web_view_short_url"` } type GoodsPromotionURLGenerateResponse struct { GoodsPromotionURLList []GoodsPromotionURLList `json:"goods_promotion_url_list"` RequestID string `json:"request_id"` }