using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMarketingCashvoucherTemplateCreateResponse. /// public class AlipayMarketingCashvoucherTemplateCreateResponse : 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; } } }