NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayMarketingToolFengdieS...

37 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>
/// AlipayMarketingToolFengdieSitesBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingToolFengdieSitesBatchqueryModel : 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; }
}
}