using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// FeeRecords Data Structure.
///
[Serializable]
public class FeeRecords : AopObject
{
///
/// 费用余额,单位为元,小数点保留2位
///
[JsonProperty("balance")]
public string Balance { get; set; }
///
/// 交易时间
///
[JsonProperty("date")]
public string Date { get; set; }
///
/// 费用交易流水备注
///
[JsonProperty("remark")]
public string Remark { get; set; }
///
/// 费用交易额度
///
[JsonProperty("total_amount")]
public string TotalAmount { get; set; }
}
}