You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
2.1 KiB
C#

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>
/// AlipayAcquireCreateandpayResponse.
/// </summary>
public class AlipayAcquireCreateandpayResponse : AopResponse
{
/// <summary>
/// 买家支付宝账号可以为email或者手机号。对部分信息进行了隐藏。
/// </summary>
[XmlElement("buyer_logon_id")]
public string BuyerLogonId { get; set; }
/// <summary>
/// 买家支付宝账号对应的支付宝唯一用户号。 以2088开头的纯16位数字。
/// </summary>
[XmlElement("buyer_user_id")]
public string BuyerUserId { get; set; }
/// <summary>
/// 对返回响应码进行原因说明请参见“10.2 业务错误码”。 当result_code响应码为ORDER_SUCCESS_PAY_SUCCESS时不返回该参数。
/// </summary>
[XmlElement("detail_error_code")]
public string DetailErrorCode { get; set; }
/// <summary>
/// 对详细错误码进行文字说明。 当result_code响应码为ORDER_SUCCESS_PAY_SUCCESS时不返回该参数。
/// </summary>
[XmlElement("detail_error_des")]
public string DetailErrorDes { get; set; }
/// <summary>
/// 支付后返回的其他信息如预付卡金额key值mcard_fee以Json格式返回。
/// </summary>
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
/// <summary>
/// 7085502131376415
/// </summary>
[XmlElement("out_trade_no")]
public string OutTradeNo { get; set; }
/// <summary>
/// 下单并支付处理结果响应码请参见“10.1 业务响应码”。
/// </summary>
[XmlElement("result_code")]
public string ResultCode { get; set; }
/// <summary>
/// 该交易在支付宝系统中的交易流水号。 最短16位最长64位。
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}