using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppRechargeFlowSendModel Data Structure. /// [Serializable] public class AlipayEbppRechargeFlowSendModel : AopObject { /// /// 绑定手机号 /// [XmlElement("bind_mobile")] public string BindMobile { get; set; } /// /// 扩展信息,json字符串 /// [XmlElement("ext_msg")] public string ExtMsg { get; set; } /// /// 移动兑换流量产品码 /// [XmlElement("trade_code")] public string TradeCode { get; set; } /// /// 兑换流量的外部订单号 /// [XmlElement("trade_id")] public string TradeId { get; set; } /// /// 兑换交易时间 /// [XmlElement("trade_time")] public string TradeTime { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }