using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayAccount Data Structure.
///
[Serializable]
public class AlipayAccount : AopObject
{
///
/// 支付宝用户ID
///
[JsonProperty("alipay_user_id")]
public string AlipayUserId { get; set; }
///
/// 可用余额
///
[JsonProperty("available_amount")]
public string AvailableAmount { get; set; }
///
/// 不可用余额
///
[JsonProperty("freeze_amount")]
public string FreezeAmount { get; set; }
///
/// 余额总额
///
[JsonProperty("total_amount")]
public string TotalAmount { get; set; }
}
}