using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// TmallMcUserGetResponse. /// public class TmallMcUserGetResponse : TopResponse { /// /// 账户信息 /// [XmlElement("account_no")] public string AccountNo { get; set; } /// /// 累计虚拟金额 /// [XmlElement("accu_amount")] public string AccuAmount { get; set; } /// /// 实际累计充值金额 /// [XmlElement("actual_amount")] public string ActualAmount { get; set; } /// /// 账户余额 /// [XmlElement("balance")] public string Balance { get; set; } /// /// 品牌商用户ID /// [XmlElement("brand_user_id")] public string BrandUserId { get; set; } /// /// 品牌名称 /// [XmlElement("brand_user_nick")] public string BrandUserNick { get; set; } /// /// 公司名称 /// [XmlElement("company")] public string Company { get; set; } /// /// 联系人信息 /// [XmlElement("contact_name")] public string ContactName { get; set; } /// /// 联系人手机号码 /// [XmlElement("contact_phone")] public string ContactPhone { get; set; } /// /// 行业信息 /// [XmlElement("industry")] public string Industry { get; set; } /// /// 代理商用户ID /// [XmlElement("proxy_user_id")] public string ProxyUserId { get; set; } /// /// 代理nick /// [XmlElement("proxy_user_nick")] public string ProxyUserNick { get; set; } /// /// 用户ID /// [XmlElement("user_id")] public string UserId { get; set; } } }