You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
767 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMarketingCashvoucherTemplateCreateResponse.
/// </summary>
public class AlipayMarketingCashvoucherTemplateCreateResponse : AopResponse
{
/// <summary>
/// 模板支付确认链接
/// </summary>
[XmlElement("confirm_uri")]
public string ConfirmUri { get; set; }
/// <summary>
/// 资金订单号,模板支付时需要
/// </summary>
[XmlElement("fund_order_no")]
public string FundOrderNo { get; set; }
/// <summary>
/// 券模板ID
/// </summary>
[XmlElement("template_id")]
public string TemplateId { get; set; }
}
}