using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayMarketingCashitemvoucherTemplateCreateResponse.
///
public class AlipayMarketingCashitemvoucherTemplateCreateResponse : AopResponse
{
///
/// 模板支付确认链接
///
[XmlElement("confirm_uri")]
public string ConfirmUri { get; set; }
///
/// 资金订单号,模板支付时需要
///
[XmlElement("fund_order_no")]
public string FundOrderNo { get; set; }
///
/// 券模板ID
///
[XmlElement("template_id")]
public string TemplateId { get; set; }
///
/// 使用一张单品券用户可以获得的最大优惠。计算方式和单张券的最大优惠的上限请参考产品说明文档
///
[XmlElement("voucher_discount_limit")]
public string VoucherDiscountLimit { get; set; }
}
}