using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayFundTransAppPayResponse.
///
public class AlipayFundTransAppPayResponse : AopResponse
{
///
/// 该笔转账在支付宝系统内部的单据ID
///
[XmlElement("order_id")]
public string OrderId { get; set; }
///
/// 商户端的唯一订单号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// SUCCESS:转账成功; WAIT_PAY:转账订单等待支付; CLOSED:订单超时关闭,截止订单支付超时时间(time_expire)仍未支付,单据状态会变更为CLOSED;
///
[XmlElement("status")]
public string Status { get; set; }
}
}