using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayMarketingVoucherAuthSendModel Data Structure. /// [Serializable] public class AlipayMarketingVoucherAuthSendModel : AopObject { /// /// 外部业务订单号,用于幂等控制 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 经过用户授权过后的发券码 /// [XmlElement("send_code")] public string SendCode { get; set; } /// /// 券模板ID /// [XmlElement("template_id")] public string TemplateId { get; set; } /// /// 支付宝用户ID /// [XmlElement("user_id")] public string UserId { get; set; } } }