30 lines
718 B
C#
30 lines
718 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayTradeOrderinfoSyncResponse.
|
|
/// </summary>
|
|
public class AlipayTradeOrderinfoSyncResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 买家在支付宝的用户id
|
|
/// </summary>
|
|
[XmlElement("buyer_user_id")]
|
|
public string BuyerUserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户订单号
|
|
/// </summary>
|
|
[XmlElement("out_trade_no")]
|
|
public string OutTradeNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付宝交易号
|
|
/// </summary>
|
|
[XmlElement("trade_no")]
|
|
public string TradeNo { get; set; }
|
|
}
|
|
}
|