NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayFundTransAppPayRespon...

30 lines
896 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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