NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialAntforestProjec...

25 lines
733 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>
/// AlipaySocialAntforestProjectQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialAntforestProjectQueryModel : AopObject
{
/// <summary>
/// 请求类型,不同类型查询的树项目可能不同,默认可不选择,由运营同学进行项目的绑定操作
/// </summary>
[XmlElement("query_type")]
public string QueryType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID执行该查询操作的支付宝用户
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}