using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// SinglePayDetail Data Structure. /// [Serializable] public class SinglePayDetail : AopObject { /// /// 支付宝冻结订单号 /// [JsonProperty("alipay_order_no")] public string AlipayOrderNo { get; set; } /// /// 本次支付金额 /// [JsonProperty("amount")] public string Amount { get; set; } /// /// 创建时间 /// [JsonProperty("create_time")] public string CreateTime { get; set; } /// /// 最近修改时间 /// [JsonProperty("modified_time")] public string ModifiedTime { get; set; } /// /// 本次支付url地址 /// [JsonProperty("pay_url")] public string PayUrl { get; set; } /// /// 收款人的userId /// [JsonProperty("receive_user_id")] public string ReceiveUserId { get; set; } /// /// 本次支付的支付宝流水号 /// [JsonProperty("transfer_order_no")] public string TransferOrderNo { get; set; } /// /// 本次支付的外部单据号 /// [JsonProperty("transfer_out_order_no")] public string TransferOutOrderNo { get; set; } } }