using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// TbkThorMfrsPromotionQueryResponse. /// public class TbkThorMfrsPromotionQueryResponse : TopResponse { /// /// 异常描述 /// [XmlElement("desc")] public string Desc { get; set; } /// /// 页码 /// [XmlElement("page")] public string Page { get; set; } /// /// 分页大小 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 原商品信息 /// [XmlElement("source_item")] public ManufacturerItemsDtoDomain SourceItem { get; set; } /// /// 请求状态码 /// [XmlElement("status")] public string Status { get; set; } /// /// 返回h5入口地址 /// [XmlElement("url")] public string Url { get; set; } /// /// ManufacturerItemsDtoDomain Data Structure. /// [Serializable] public class ManufacturerItemsDtoDomain : TopObject { /// /// deeplink地址 /// [XmlElement("click_through_by_deeplink")] public string ClickThroughByDeeplink { get; set; } /// /// 跳转地址 /// [XmlElement("click_through_by_h5")] public string ClickThroughByH5 { get; set; } /// /// 点击反馈链接 /// [XmlElement("click_tracking_url")] public string ClickTrackingUrl { get; set; } /// /// 优惠券信息 /// [XmlElement("coupon")] public string Coupon { get; set; } /// /// 券地址 /// [XmlElement("coupon_click_through_by_deeplink")] public string CouponClickThroughByDeeplink { get; set; } /// /// 领取deeplink地址 /// [XmlElement("coupon_click_through_by_h5")] public string CouponClickThroughByH5 { get; set; } /// /// 是否包邮 /// [XmlElement("free_shipment")] public string FreeShipment { get; set; } /// /// 营销标签 /// [XmlArray("icon_list")] [XmlArrayItem("string")] public List IconList { get; set; } /// /// 商品图片地址 /// [XmlElement("img")] public string Img { get; set; } /// /// 曝光反馈地址 /// [XmlElement("impression_tracking_url")] public string ImpressionTrackingUrl { get; set; } /// /// 商品标题 /// [XmlElement("item_title")] public string ItemTitle { get; set; } /// /// 地区 /// [XmlElement("provcity")] public string Provcity { get; set; } /// /// 售价 /// [XmlElement("sale_price")] public string SalePrice { get; set; } /// /// 店铺名称 /// [XmlElement("shop")] public string Shop { get; set; } /// /// 店铺类型 /// [XmlElement("shop_type")] public string ShopType { get; set; } /// /// 30天销量 /// [XmlElement("volume")] public string Volume { get; set; } /// /// 价格 /// [XmlElement("zk_final_price")] public string ZkFinalPrice { get; set; } } } }