Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/PaymentAbilityQueryResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
757 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// PaymentAbilityQueryResponse Data Structure.
/// </summary>
[Serializable]
public class PaymentAbilityQueryResponse : AopObject
{
/// <summary>
/// 附加信息json格式字符串。暂时包含信息是否是支付宝钱包用户是否是数字娱乐行业活跃用户。
/// </summary>
[JsonProperty("extra_infos")]
public string ExtraInfos { get; set; }
/// <summary>
/// 接口返回的支付能力等级
/// </summary>
[JsonProperty("level")]
public string Level { get; set; }
/// <summary>
/// 返回的单据号
/// </summary>
[JsonProperty("order_id")]
public string OrderId { get; set; }
}
}