using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Response { /// /// AlipayOfflineMarketShopPublicBindResponse. /// public class AlipayOfflineMarketShopPublicBindResponse : AopResponse { /// /// 绑定失败的店铺ID列表 /// [XmlArray("error_binding_shop_ids")] [XmlArrayItem("string")] public List ErrorBindingShopIds { get; set; } /// /// 数字类型,标示总的绑定错误总数 /// [XmlElement("total_error")] public long TotalError { get; set; } /// /// 绑定店铺总成功数 /// [XmlElement("total_success")] public long TotalSuccess { get; set; } } }