zhaojs
2023-09-27 74098f1401afe40f961d1d167bb18dd0a71c4d59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace YouZanSDKStandard.Api.Domain
{
    /// <summary>
    /// 有赞卡券列表
    /// </summary>
    [Serializable]
    public class OrderUmpTradeCouponOpenModel
    {
        /// <summary>
        /// 该组卡券的ID
        /// </summary>
        public int coupon_id { get; set; }
        /// <summary>
        /// 该组卡券的名称
        /// </summary>
        public string coupon_name { get; set; }
        /// <summary>
        /// 卡券的类型。可选值:PROMOCARD(优惠券)、PROMOCODE(优惠码)
        /// </summary>
        public string coupon_type { get; set; }
        /// <summary>
        /// 卡券内容。当卡券类型为优惠码时,值为优惠码字符串
        /// </summary>
        public string coupon_content { get; set; }
        /// <summary>
        /// 卡券的说明
        /// </summary>
        public string coupon_description { get; set; }
        /// <summary>
        /// 卡券使用条件说明
        /// </summary>
        public string coupon_condition { get; set; }
        /// <summary>
        /// 使用时间
        /// </summary>
        public string used_at { get; set; }
        /// <summary>
        /// 优惠的金额,单位:元,精确到小数点后两位
        /// </summary>
        public double discount_fee { get; set; }
    }
}