NewGaoKaoApi/PaymentSDK/AliPay/Domain/PaymentAbilityQueryResponse.cs

31 lines
845 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>
/// PaymentAbilityQueryResponse Data Structure.
/// </summary>
[Serializable]
public class PaymentAbilityQueryResponse : AopObject
{
/// <summary>
/// 附加信息json格式字符串。暂时包含信息是否是支付宝钱包用户是否是数字娱乐行业活跃用户。
/// </summary>
[XmlElement("extra_infos")]
public string ExtraInfos { get; set; }
/// <summary>
/// 接口返回的支付能力等级
/// </summary>
[XmlElement("level")]
public string Level { get; set; }
/// <summary>
/// 返回的单据号
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
}
}