using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayOpenPublicMatchuserLabelDeleteResponse.
///
public class AlipayOpenPublicMatchuserLabelDeleteResponse : AopResponse
{
///
/// 用户打标失败数量
///
[JsonProperty("error_count")]
public long ErrorCount { get; set; }
///
/// 出错的匹配器列表
///
[JsonProperty("error_matchers")]
public List ErrorMatchers { get; set; }
}
}