using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayMerchantOrderExternalPaychannelSyncModel Data Structure.
///
[Serializable]
public class AlipayMerchantOrderExternalPaychannelSyncModel : AopObject
{
///
/// 业务单号,微信、支付宝交易号
///
[XmlElement("biz_no")]
public string BizNo { get; set; }
///
/// 业务单状态
///
[XmlElement("biz_status")]
public string BizStatus { get; set; }
///
/// 买家实付金额 - 仅针对支付
///
[XmlElement("buyer_pay_amount")]
public string BuyerPayAmount { get; set; }
///
/// 平台优惠金额 - 仅针对支付
///
[XmlElement("discount_amount")]
public string DiscountAmount { get; set; }
///
/// 交易支付使用的资金渠道
///
[XmlElement("fund_bill_list")]
public string FundBillList { get; set; }
///
/// 支付成功时间 - 仅针对支付
///
[XmlElement("gmt_payment")]
public string GmtPayment { get; set; }
///
/// 商家优惠金额 - 仅针对支付
///
[XmlElement("mdiscount_amount")]
public string MdiscountAmount { get; set; }
///
/// 通知时间
///
[XmlElement("notify_time")]
public string NotifyTime { get; set; }
///
/// 通知类型
///
[XmlElement("notify_type")]
public string NotifyType { get; set; }
///
/// 外部业务号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 外部请求号 - 仅针对退款
///
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
///
/// 支付渠道,微信:wechat,支付宝:alipay - 仅针对支付
///
[XmlElement("pay_channel")]
public string PayChannel { get; set; }
///
/// 实收金额 - 仅针对支付
///
[XmlElement("receipt_amount")]
public string ReceiptAmount { get; set; }
///
/// 本次退款金额(非累计) - 仅针对退款
///
[XmlElement("refund_amount")]
public string RefundAmount { get; set; }
///
/// 累计退款总金额 - 仅针对退款
///
[XmlElement("refund_total_amount")]
public string RefundTotalAmount { get; set; }
///
/// 业务单总金额
///
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
}
}