30 lines
760 B
C#
30 lines
760 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingCouponTemplateCreateResponse.
|
|
/// </summary>
|
|
public class AlipayMarketingCouponTemplateCreateResponse : 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; }
|
|
}
|
|
}
|