NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserCharityRecordexis...

43 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>
/// AlipayUserCharityRecordexistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserCharityRecordexistQueryModel : AopObject
{
/// <summary>
/// 公益的业务类型(缺省是所有类型)
/// </summary>
[XmlElement("biz_type")]
public long BizType { get; set; }
/// <summary>
/// 捐赠记录的结束时间(默认是查询当前自然年一年的记录)
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 商户和支付宝交互时用于代表支付宝分配给商户ID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 捐赠记录的开始时间(默认是查询当前自然年一年的记录)
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}