NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserCharityCommonweal...

55 lines
1.5 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>
/// AlipayUserCharityCommonwealCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCharityCommonwealCreateModel : AopObject
{
/// <summary>
/// 业务时间格式yyyy-MM-dd hh:mm:ss
/// </summary>
[XmlElement("biz_time")]
public string BizTime { get; set; }
/// <summary>
/// 预留扩展信息JSON格式
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 业务数值,例如 捐赠金额无业务数值传0
/// </summary>
[XmlElement("numerical")]
public long Numerical { get; set; }
/// <summary>
/// 其他业务信息JSON格式
/// </summary>
[XmlElement("original_data")]
public string OriginalData { get; set; }
/// <summary>
/// 商户和支付宝交互时用于代表支付宝分配给商户ID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 唯一ID用于防重控制同一个unique_id重复提交多次只处理一次
/// </summary>
[XmlElement("unique_id")]
public string UniqueId { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}