Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayMicropayOrderConfirmpayurlGetResponse.cs

17 lines
419 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayMicropayOrderConfirmpayurlGetResponse.
/// </summary>
public class AlipayMicropayOrderConfirmpayurlGetResponse : AopResponse
{
/// <summary>
/// SinglePayDetail信息
/// </summary>
[JsonProperty("single_pay_detail")]
public SinglePayDetail SinglePayDetail { get; set; }
}
}