using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayOfflineMarketingVoucherOfflineResponse. /// public class AlipayOfflineMarketingVoucherOfflineResponse : AopResponse { /// /// 券模板编号 /// [XmlElement("voucher_id")] public string VoucherId { get; set; } /// /// 券模板状态。EFFECTIVE=生效,INVALID=失效。 /// [XmlElement("voucher_status")] public string VoucherStatus { get; set; } } }