NewGaoKaoApi/PaymentSDK/AliPay/Domain/InteligentPromoTool.cs

37 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// InteligentPromoTool Data Structure.
/// </summary>
[Serializable]
public class InteligentPromoTool : AopObject
{
/// <summary>
/// 奖品发放的规则
/// </summary>
[XmlElement("inteligent_send_rule")]
public InteligentSendRule InteligentSendRule { get; set; }
/// <summary>
/// 券对象当活动类型为POINT_SEND时为null其他活动类型此字段必填
/// </summary>
[XmlElement("inteligent_voucher")]
public InteligentVoucher InteligentVoucher { get; set; }
/// <summary>
/// 单个营销工具的生效状态,当在招商部分券失效后会使用这个字段
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 营销工具uid,创建营销活动时无需设置
/// </summary>
[XmlElement("voucher_no")]
public string VoucherNo { get; set; }
}
}