using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayOfflineMarketShopPublicUnbindResponse. /// public class AlipayOfflineMarketShopPublicUnbindResponse : AopResponse { /// /// 绑定失败的店铺ID列表,绑定失败原因可能是:a)检测到shop_id不存在;b)检测到shop_id不属于当前商户;c)该门店ID已经绑定服务窗 /// [XmlArray("error_un_binding_shop_ids")] [XmlArrayItem("string")] public List ErrorUnBindingShopIds { get; set; } /// /// 总的基础绑定错误数 /// [XmlElement("total_error")] public long TotalError { get; set; } /// /// 总的解除绑定成功数 /// [XmlElement("total_success")] public long TotalSuccess { get; set; } } }