NewGaoKaoApi/PaymentSDK/AliPay/Domain/PayForPrivilegePromotionPla...

75 lines
2.1 KiB
C#
Raw Permalink 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// PayForPrivilegePromotionPlanInfo Data Structure.
/// </summary>
[Serializable]
public class PayForPrivilegePromotionPlanInfo : AopObject
{
/// <summary>
/// 充享惠方案权益金部分最小为0
/// </summary>
[XmlElement("benefit")]
public string Benefit { get; set; }
/// <summary>
/// 创建时间
/// </summary>
[XmlElement("create_time")]
public string CreateTime { get; set; }
/// <summary>
/// 充享惠方案的结束时间
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 最近修改时间
/// </summary>
[XmlElement("modify_time")]
public string ModifyTime { get; set; }
/// <summary>
/// 商户创建充享惠方案时指定的外部唯一编号,用于幂等控制
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 充享惠方案有偿券部分
/// </summary>
[XmlArray("paid_voucher_list")]
[XmlArrayItem("pay_for_privilege_paid_voucher_config")]
public List<PayForPrivilegePaidVoucherConfig> PaidVoucherList { get; set; }
/// <summary>
/// 充享惠方案本金部分单位元必须大于0
/// </summary>
[XmlElement("principal")]
public string Principal { get; set; }
/// <summary>
/// 充享惠方案ID
/// </summary>
[XmlElement("promotion_plan_id")]
public string PromotionPlanId { get; set; }
/// <summary>
/// 充享惠方案开始时间
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 充享惠方案的状态ENABLED(启用), DISABLED(停用)
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}