48 lines
984 B
C#
48 lines
984 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// InsMktPreUseCouponDTO Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class InsMktPreUseCouponDTO : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 资产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>
|
||
|
|
/// 权益值
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("coupon_value")]
|
||
|
|
public string CouponValue { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 是否支持预核销
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("pre_use")]
|
||
|
|
public bool PreUse { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 预核销失败原因
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("reason")]
|
||
|
|
public string Reason { get; set; }
|
||
|
|
}
|
||
|
|
}
|