NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiRetailInstanceQueryMo...

31 lines
829 B
C#
Raw 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>
/// KoubeiRetailInstanceQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiRetailInstanceQueryModel : AopObject
{
/// <summary>
/// 券或者电子DM单VOUCHER、DM如果字段为空返回VOUCHER类型
/// </summary>
[XmlElement("instance_type")]
public string InstanceType { get; set; }
/// <summary>
/// 当前页码默认1
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 一次请求返回的数据量1~100整数默认10
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}