using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// BeikeAccountResponse Data Structure. /// [Serializable] public class BeikeAccountResponse : AopObject { /// /// 当前操作变化值 /// [XmlElement("change_amount")] public long ChangeAmount { get; set; } /// /// 呗壳当前用户所有的免息额度值,long类型 /// [XmlElement("current_amount")] public long CurrentAmount { get; set; } /// /// 外部唯一单号 /// [XmlElement("outer_biz_no")] public string OuterBizNo { get; set; } } }