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