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