NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEbppRechargeFlowSendM...

49 lines
1.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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