using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// TradePrecreateConfirmOrderInfo Data Structure.
///
[Serializable]
public class TradePrecreateConfirmOrderInfo : AopObject
{
///
/// 对交易或商品的描述
///
[XmlElement("body")]
public string Body { get; set; }
///
/// 支付超时的绝对时间
///
[XmlElement("pay_expire_time")]
public string PayExpireTime { get; set; }
///
/// 商品数量
///
[XmlElement("quantity")]
public long Quantity { get; set; }
}
}