using System; using System.Xml.Serialization; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// MybankFinanceYulibaoAccountQueryResponse. /// public class MybankFinanceYulibaoAccountQueryResponse : AopResponse { /// /// 可用份额,单位为元 /// [XmlElement("available_amount")] public string AvailableAmount { get; set; } /// /// 业务冻结份额,单位为元 /// [XmlElement("freeze_amount")] public string FreezeAmount { get; set; } /// /// 系统冻结份额,单位为元(建议不展示给用户) /// [XmlElement("sys_freeze_amount")] public string SysFreezeAmount { get; set; } /// /// 余利宝总余额,单位为元 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 余利宝收益详情 /// [XmlElement("ylb_profit_detail_info")] public YLBProfitDetailInfo YlbProfitDetailInfo { get; set; } } }