using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayEcoMycarParkingOrderPayResponse.
///
public class AlipayEcoMycarParkingOrderPayResponse : AopResponse
{
///
/// 垫资金额,不返回表示没有走垫资非空表示垫资支付的金额
///
[XmlElement("advance_amount")]
public string AdvanceAmount { get; set; }
///
/// 如果垫资金额不为空,则返回支付宝停车平台用户主动还款链接。服务商引导用户点击链接时,会跳转到用户在支付宝停车平台的待还款页面。 服务商可保存该链接作为用户还款入口地址。
///
[XmlElement("alipay_repayment_url")]
public string AlipayRepaymentUrl { get; set; }
///
/// 本次交易使用的支付渠道信息。详见(支付渠道信息)
///
[XmlElement("fund_bill_list")]
public string FundBillList { get; set; }
///
/// 该笔交易的买家付款时间。 格式为yyyy-MM-dd HH:mm:ss
///
[XmlElement("gmt_payment")]
public string GmtPayment { get; set; }
///
/// 对应商户网站的订单系统中的唯一订单号,非支付宝交易号。 需保证在商户网站中的唯一性。是请求时对应的参数,原样返回。
///
[XmlElement("out_trade_no")]
public string OutTradeNo { get; set; }
///
/// 交易金额 保留小数点后两位
///
[XmlElement("total_fee")]
public string TotalFee { get; set; }
///
/// 该交易在支付宝系统中的交易流水号。系统唯一,最短16位,最长64位
///
[XmlElement("trade_no")]
public string TradeNo { get; set; }
///
/// 买家支付宝用户ID,用于标识订单扣款用户及订单回传使用
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}