using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace YouZanSDKStandard.Api.Domain { /// /// 有赞卡券列表 /// [Serializable] public class OrderUmpTradeCouponOpenModel { /// /// 该组卡券的ID /// public int coupon_id { get; set; } /// /// 该组卡券的名称 /// public string coupon_name { get; set; } /// /// 卡券的类型。可选值:PROMOCARD(优惠券)、PROMOCODE(优惠码) /// public string coupon_type { get; set; } /// /// 卡券内容。当卡券类型为优惠码时,值为优惠码字符串 /// public string coupon_content { get; set; } /// /// 卡券的说明 /// public string coupon_description { get; set; } /// /// 卡券使用条件说明 /// public string coupon_condition { get; set; } /// /// 使用时间 /// public string used_at { get; set; } /// /// 优惠的金额,单位:元,精确到小数点后两位 /// public double discount_fee { get; set; } } }