using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayFundAccountQueryResponse.
///
public class AlipayFundAccountQueryResponse : AopResponse
{
///
/// 可用余额。可用于支付或提现的余额。
///
[XmlElement("available_amount")]
public string AvailableAmount { get; set; }
///
/// 场景余额模式外标卡信息
///
[XmlElement("ext_card_info")]
public ExtCardInfo ExtCardInfo { get; set; }
}
}