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