using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// GoodsDetail Data Structure. /// [Serializable] public class GoodsDetail : AopObject { /// /// 支付宝定义的统一商品编号 /// [JsonProperty("alipay_goods_id")] public string AlipayGoodsId { get; set; } /// /// 商品描述信息 /// [JsonProperty("body")] public string Body { get; set; } /// /// 商品类目 /// [JsonProperty("goods_category")] public string GoodsCategory { get; set; } /// /// 商品的编号 /// [JsonProperty("goods_id")] public string GoodsId { get; set; } /// /// 商品名称 /// [JsonProperty("goods_name")] public string GoodsName { get; set; } /// /// 商品单价,单位为元 /// [JsonProperty("price")] public string Price { get; set; } /// /// 商品数量 /// [JsonProperty("quantity")] public long Quantity { get; set; } /// /// 商品的展示地址 /// [JsonProperty("show_url")] public string ShowUrl { get; set; } } }