using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// TrusteeshipAccountBillQueryResponse Data Structure. /// [Serializable] public class TrusteeshipAccountBillQueryResponse : AopObject { /// /// 账单日 /// [XmlElement("account_date")] public string AccountDate { get; set; } /// /// 流水类型,取值为I/O,I表示IN,即流入;O表示OUT,即流出。 /// [XmlElement("action")] public string Action { get; set; } /// /// 涉及金额 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 账户剩余金额 /// [XmlElement("balance")] public string Balance { get; set; } /// /// 币种 /// [XmlElement("currency")] public string Currency { get; set; } /// /// 托管流水号 /// [XmlElement("id")] public string Id { get; set; } /// /// 备注 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 交易时间 /// [XmlElement("trans_dt")] public string TransDt { get; set; } /// /// 支付宝ID /// [XmlElement("uid")] public string Uid { get; set; } } }