NewGaoKaoApi/PaymentSDK/AliPay/Domain/FeeRecords.cs

37 lines
862 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.Domain
{
/// <summary>
/// FeeRecords Data Structure.
/// </summary>
[Serializable]
public class FeeRecords : AopObject
{
/// <summary>
/// 费用余额单位为元小数点保留2位
/// </summary>
[XmlElement("balance")]
public string Balance { get; set; }
/// <summary>
/// 交易时间
/// </summary>
[XmlElement("date")]
public string Date { get; set; }
/// <summary>
/// 费用交易流水备注
/// </summary>
[XmlElement("remark")]
public string Remark { get; set; }
/// <summary>
/// 费用交易额度
/// </summary>
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
}
}