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.

37 lines
866 B
C#

using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayInsSceneCouponSendResponse.
/// </summary>
public class AlipayInsSceneCouponSendResponse : AopResponse
{
/// <summary>
/// 发奖凭证
/// </summary>
[XmlElement("certificate")]
public InsCertificate Certificate { get; set; }
/// <summary>
/// 活动ID
/// </summary>
[XmlElement("compaign_id")]
public string CompaignId { get; set; }
/// <summary>
/// 发奖流水ID
/// </summary>
[XmlElement("flow_id")]
public string FlowId { get; set; }
/// <summary>
/// 保险产品
/// </summary>
[XmlElement("product")]
public InsProduct Product { get; set; }
}
}