NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingToolFengdieT...

37 lines
1011 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>
/// AlipayMarketingToolFengdieTemplateBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingToolFengdieTemplateBatchqueryModel : AopObject
{
/// <summary>
/// 作为当前操作者的空间成员用户名, 值为 origin_user_id
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 当前页数默认为1
/// </summary>
[XmlElement("page_number")]
public string PageNumber { get; set; }
/// <summary>
/// 每页记录数不能超过50默认为10
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
/// <summary>
/// 欲查询的空间 ID
/// </summary>
[XmlElement("space_id")]
public string SpaceId { get; set; }
}
}