Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/KoubeiTradeOrderConsultResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

37 lines
849 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// KoubeiTradeOrderConsultResponse.
/// </summary>
public class KoubeiTradeOrderConsultResponse : AopResponse
{
/// <summary>
/// 用户实付金额
/// </summary>
[JsonProperty("buyer_pay_amount")]
public string BuyerPayAmount { get; set; }
/// <summary>
/// 优惠信息
/// </summary>
[JsonProperty("discount_detail")]
public List<DiscountDetail> DiscountDetail { get; set; }
/// <summary>
/// 储值卡信息
/// </summary>
[JsonProperty("m_card_detail")]
public MCardDetail MCardDetail { get; set; }
/// <summary>
/// 请求中的request_id
/// </summary>
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}