Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/InsMktCouponDTO.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

60 lines
1.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsMktCouponDTO Data Structure.
/// </summary>
[Serializable]
public class InsMktCouponDTO : AopObject
{
/// <summary>
/// 权益资产Id如券Id
/// </summary>
[JsonProperty("asset_id")]
public string AssetId { get; set; }
/// <summary>
/// 权益Id
/// </summary>
[JsonProperty("coupon_id")]
public string CouponId { get; set; }
/// <summary>
/// 权益类型
/// </summary>
[JsonProperty("coupon_type")]
public string CouponType { get; set; }
/// <summary>
/// 500元单品券
/// </summary>
[JsonProperty("coupon_value")]
public string CouponValue { get; set; }
/// <summary>
/// 是否推荐使用该优惠
/// </summary>
[JsonProperty("recommend")]
public bool Recommend { get; set; }
/// <summary>
/// 核销结束时间
/// </summary>
[JsonProperty("use_end_time")]
public string UseEndTime { get; set; }
/// <summary>
/// 核销规则
/// </summary>
[JsonProperty("use_rule")]
public string UseRule { get; set; }
/// <summary>
/// 核销开始时间
/// </summary>
[JsonProperty("use_start_time")]
public string UseStartTime { get; set; }
}
}