using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// KoubeiTradeTicketTicketcodeUseResponse.
///
public class KoubeiTradeTicketTicketcodeUseResponse : AopResponse
{
///
/// 用户购买券的时候实际支付的金额
///
[JsonProperty("buyer_pay_amount")]
public string BuyerPayAmount { get; set; }
///
/// 用户购买时商品的现价
///
[JsonProperty("current_price")]
public string CurrentPrice { get; set; }
///
/// 优惠金额,含商家补贴金额和口碑补贴金额
///
[JsonProperty("discount_amount")]
public string DiscountAmount { get; set; }
///
/// 交易中可给用户开具发票的金额
///
[JsonProperty("invoice_amount")]
public string InvoiceAmount { get; set; }
///
/// 口碑商品ID
///
[JsonProperty("item_id")]
public string ItemId { get; set; }
///
/// 用户购买时商品的名称
///
[JsonProperty("item_name")]
public string ItemName { get; set; }
///
/// 口碑补贴金额
///
[JsonProperty("koubei_subsidy_amount")]
public string KoubeiSubsidyAmount { get; set; }
///
/// 券码所属的订单id
///
[JsonProperty("order_no")]
public string OrderNo { get; set; }
///
/// 用户购买时商品的原价
///
[JsonProperty("original_price")]
public string OriginalPrice { get; set; }
///
/// 商家实收金额
///
[JsonProperty("receipt_amount")]
public string ReceiptAmount { get; set; }
///
/// 外部请求号,支持英文字母和数字,由开发者自行定义(不允许重复)
///
[JsonProperty("request_id")]
public string RequestId { get; set; }
///
/// 12位的券码,券码为纯数字,且唯一不重复
///
[JsonProperty("ticket_code")]
public string TicketCode { get; set; }
///
/// 核销流水号
///
[JsonProperty("ticket_trans_id")]
public string TicketTransId { get; set; }
///
/// 券核销时间
///
[JsonProperty("use_date")]
public string UseDate { get; set; }
///
/// 券核销门店ID
///
[JsonProperty("use_shop_id")]
public string UseShopId { get; set; }
///
/// 券核销门店名称
///
[JsonProperty("use_shop_name")]
public string UseShopName { get; set; }
///
/// 券码对应的凭证资产id
///
[JsonProperty("voucher_id")]
public string VoucherId { get; set; }
}
}