using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayMicropayOrderDirectPayResponse. /// public class AlipayMicropayOrderDirectPayResponse : AopResponse { /// /// 单笔直接支付返回结果 /// [JsonProperty("single_pay_detail")] public SinglePayDetail SinglePayDetail { get; set; } } }