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