接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,60 @@
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; }
}
}