using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayMarketingVoucherDeleteModel Data Structure.
///
[Serializable]
public class AlipayMarketingVoucherDeleteModel : AopObject
{
///
/// 外部唯一业务号,用于做幂等控制
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
///
/// 券id
///
[XmlElement("voucher_id")]
public string VoucherId { get; set; }
}
}