using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayOpenPublicMatchuserLabelDeleteResponse. /// public class AlipayOpenPublicMatchuserLabelDeleteResponse : AopResponse { /// /// 用户打标失败数量 /// [XmlElement("error_count")] public long ErrorCount { get; set; } /// /// 出错的匹配器列表 /// [XmlArray("error_matchers")] [XmlArrayItem("error_matcher")] public List ErrorMatchers { get; set; } } }