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