NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingVoucherBillQ...

37 lines
913 B
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>
/// AlipayMarketingVoucherBillQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingVoucherBillQueryModel : AopObject
{
/// <summary>
/// 第多少页从1开始
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页返回的数据量大小取值范围1~50
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 券ID
/// </summary>
[XmlElement("voucher_id")]
public string VoucherId { get; set; }
}
}