using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayOfflineMarketShopModifyResponse. /// public class AlipayOfflineMarketShopModifyResponse : AopResponse { /// /// 修改门店请求受理成功后返回的支付宝流水ID,根据此ID调用接口 alipay.offline.market.applyorder.batchquery,能够获取当前修改店铺请求审核状态、驳回原因等信息。 /// [XmlElement("apply_id")] public string ApplyId { get; set; } /// /// 废弃字段。 /// [XmlElement("audit_desc")] public string AuditDesc { get; set; } /// /// 同步请求如果支付宝受理成功,将返回AUDITING状态。 /// [XmlElement("audit_status")] public string AuditStatus { get; set; } /// /// 废弃字段,T表示上架,F表示未上架。 /// [XmlElement("is_online")] public string IsOnline { get; set; } /// /// 废弃字段,T表示显示,F表示隐藏。 /// [XmlElement("is_show")] public string IsShow { get; set; } } }