using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOfflineMarketingVoucherModifyModel Data Structure. /// [Serializable] public class AlipayOfflineMarketingVoucherModifyModel : AopObject { /// /// 预算信息 /// [XmlElement("budget_info")] public BudgetInfo BudgetInfo { get; set; } /// /// 扩展参数 /// [XmlElement("ext_info")] public string ExtInfo { get; set; } /// /// 发放次数限制 /// [XmlElement("get_count_limit")] public PeriodInfo GetCountLimit { get; set; } /// /// 外部流水号.需商家自己生成并保证每次请求的唯一性 /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } /// /// 券信息 /// [XmlElement("voucher_info")] public VoucherModifyInfo VoucherInfo { get; set; } } }