using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppRechargeNotifySendModel Data Structure.
///
[Serializable]
public class AlipayEbppRechargeNotifySendModel : AopObject
{
///
/// 充值面额或者优惠面额
///
[XmlElement("face_price")]
public string FacePrice { get; set; }
///
/// 充值时间或者话费券有效时间
///
[XmlElement("gmt_charge")]
public string GmtCharge { get; set; }
///
/// 充值的手机号码
///
[XmlElement("mobile")]
public string Mobile { get; set; }
///
/// 阿里通信通知类型
///
[XmlElement("notify_type")]
public string NotifyType { get; set; }
///
/// 外部用户id
///
[XmlElement("out_user_id")]
public string OutUserId { get; set; }
///
/// 充值交易号
///
[XmlElement("trade_no")]
public string TradeNo { get; set; }
///
/// 支付宝用户id
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}