NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignCrow...

31 lines
827 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>
/// KoubeiMarketingCampaignCrowdBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignCrowdBatchqueryModel : AopObject
{
/// <summary>
/// 人群名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 分页页码从1开始计数,如果不填写默认为1
/// </summary>
[XmlElement("page_number")]
public string PageNumber { get; set; }
/// <summary>
/// 分页大小每页显示的数目如果不填写默认为20
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
}
}