NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniItemPageQuery...

39 lines
1014 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenMiniItemPageQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniItemPageQueryModel : AopObject
{
/// <summary>
/// 商家侧商品id列表
/// </summary>
[XmlArray("item_id_list")]
[XmlArrayItem("string")]
public List<string> ItemIdList { get; set; }
/// <summary>
/// 操作类型固定为ITEM_PAGEQUERY
/// </summary>
[XmlElement("operation")]
public string Operation { get; set; }
/// <summary>
/// 当前页码默认1
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 每页数量最大不超过20默认10
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
}
}