NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingCampaignCash...

31 lines
1.0 KiB
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>
/// AlipayMarketingCampaignCashListQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingCampaignCashListQueryModel : AopObject
{
/// <summary>
/// 要查询的活动状态,不填默认返回所有类型。 可填: ALL:所有类型的活动 CREATED: 已创建未打款 PAID:已打款 READY:活动已开始 PAUSE:活动已暂停 CLOSED:活动已结束 SETTLE:活动已清算
/// </summary>
[XmlElement("camp_status")]
public string CampStatus { get; set; }
/// <summary>
/// 分页查询时的页码从1开始
/// </summary>
[XmlElement("page_index")]
public string PageIndex { get; set; }
/// <summary>
/// 分页查询时每页返回的列表大小,最大为50
/// </summary>
[XmlElement("page_size")]
public string PageSize { get; set; }
}
}