using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// DiscountInfos Data Structure.
///
[Serializable]
public class DiscountInfos : AopObject
{
///
/// 优惠金额
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 扩展信息
///
[XmlElement("ext_infos")]
public string ExtInfos { get; set; }
///
/// 本次支付商家优惠的金额
///
[XmlElement("mdiscount_amount")]
public string MdiscountAmount { get; set; }
///
/// 优惠名称
///
[XmlElement("name")]
public string Name { get; set; }
///
/// 本次支付平台补贴的金额
///
[XmlElement("platform_discount_amount")]
public string PlatformDiscountAmount { get; set; }
///
/// 优惠类型
///
[XmlElement("type")]
public string Type { get; set; }
}
}