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

31 lines
927 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayMarketingToolFengdieSitesQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayMarketingToolFengdieSitesQueryModel : AopObject
{
/// <summary>
/// 欲查询的站点 ID
/// </summary>
[XmlElement("activity_id")]
public long ActivityId { get; set; }
/// <summary>
/// 作为当前操作者的空间成员用户名, 值为 origin_user_id即创建空间成员接口的入参应确保 operator 是参数 space_id 对应的空间成员
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 欲查询的站点所归属的空间 ID
/// </summary>
[XmlElement("space_id")]
public string SpaceId { get; set; }
}
}