NewGaoKaoApi/PaymentSDK/AliPay/Domain/PayForPrivilegeRechargeCard...

61 lines
1.5 KiB
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.Domain
{
/// <summary>
/// PayForPrivilegeRechargeCardUseLog Data Structure.
/// </summary>
[Serializable]
public class PayForPrivilegeRechargeCardUseLog : AopObject
{
/// <summary>
/// 交易总金额
/// </summary>
[XmlElement("amount")]
public string Amount { get; set; }
/// <summary>
/// 交易中权益金部分(配置膨胀方案时使用)
/// </summary>
[XmlElement("benefit")]
public string Benefit { get; set; }
/// <summary>
/// 业务发生时间
/// </summary>
[XmlElement("biz_date")]
public string BizDate { get; set; }
/// <summary>
/// 业务类型PAY(支付), REFUND(退款)
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 该字段已废弃,请勿使用
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 交易中本金部分
/// </summary>
[XmlElement("principal")]
public string Principal { get; set; }
/// <summary>
/// 支付宝交易号
/// </summary>
[XmlElement("trade_no")]
public string TradeNo { get; set; }
/// <summary>
/// 支付宝统一用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}