using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YouZanSDKStandard.Api.Domain { /// /// 有赞优惠列表 /// [Serializable] public class OrderTradePromotionOpenModel { /// ///该优惠活动的ID /// public int promotion_id { get; set; } /// ///该优惠活动的名称 /// public string promotion_name { get; set; } /// ///优惠的类型。可选值:
FULLREDUCE(满减满送)
ORDERCASHBACK(订单返现)
GROUPBUYING(商品团购)
GROUPON(多人拼团)
SECKILL(秒杀)
AUCTION(降价拍) ///
public string promotion_type { get; set; } /// ///优惠使用条件说明 /// public string promotion_condition { get; set; } /// ///使用时间 /// public string used_at { get; set; } /// ///优惠的金额,单位:元,精确到小数点后两位 /// public double discount_fee { get; set; } } }