using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// MCardDetail Data Structure.
///
[Serializable]
public class MCardDetail : AopObject
{
///
/// 储值卡可用余额
///
[JsonProperty("available_amount")]
public string AvailableAmount { get; set; }
///
/// 储值卡名称
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 储值卡支付金额
///
[JsonProperty("pay_amount")]
public string PayAmount { get; set; }
}
}