using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayLifeassistantProdBillGetResponse. /// public class AlipayLifeassistantProdBillGetResponse : AopResponse { /// /// 支付金额 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 流水号 /// [XmlElement("order_id")] public string OrderId { get; set; } /// /// 支付款项名称 /// [XmlElement("order_item")] public string OrderItem { get; set; } /// /// 支付时间,毫秒 /// [XmlElement("pay_time")] public string PayTime { get; set; } /// /// 付款类型 /// [XmlElement("pay_type")] public string PayType { get; set; } /// /// 收款方名称|机构名称 /// [XmlElement("payee")] public string Payee { get; set; } /// /// 交易类型 S——担保交易 FP——即时到帐 COD——货到付款 /// [XmlElement("trade_type")] public string TradeType { get; set; } } }